[BACK]Return to netstart CVS log [TXT][DIR] Up to [local] / src / etc

Diff for /src/etc/netstart between version 1.90 and 1.91

version 1.90, 2003/12/04 01:19:37 version 1.91, 2004/01/09 10:02:23
Line 111 
Line 111 
                                 if [ "$bcaddr" -a "X$bcaddr" != "XNONE" ]; then                                  if [ "$bcaddr" -a "X$bcaddr" != "XNONE" ]; then
                                         cmd="$cmd broadcast $bcaddr"                                          cmd="$cmd broadcast $bcaddr"
                                 fi                                  fi
                                 [ "$alias" ] && rtcmd=";route -n add -host $name 127.0.0.1"                                  [ "$alias" ] && rtcmd=";route -qn add -host $name 127.0.0.1"
                                 ;;                                  ;;
                         inet6) [ "$mask" ] && cmd="$cmd prefixlen $mask"                          inet6) [ "$mask" ] && cmd="$cmd prefixlen $mask"
                                 cmd="$cmd $bcaddr"                                  cmd="$cmd $bcaddr"
Line 199 
Line 199 
 ifconfig lo0 inet localhost  ifconfig lo0 inet localhost
   
 # Use loopback, not the wire.  # Use loopback, not the wire.
 route -n add -host $hostname localhost > /dev/null  route -qn add -host $hostname localhost > /dev/null
 route -n add -net 127 127.0.0.1 -reject > /dev/null  route -qn add -net 127 127.0.0.1 -reject > /dev/null
   
 if ifconfig lo0 inet6 >/dev/null 2>&1; then  if ifconfig lo0 inet6 >/dev/null 2>&1; then
         # IPv6 configurations.          # IPv6 configurations.
         ip6kernel=YES          ip6kernel=YES
   
         # Disallow link-local unicast dest without outgoing scope identifiers.          # Disallow link-local unicast dest without outgoing scope identifiers.
         route add -inet6 fe80:: -prefixlen 10 ::1 -reject > /dev/null          route -q add -inet6 fe80:: -prefixlen 10 ::1 -reject > /dev/null
   
         # Disallow site-local unicast dest without outgoing scope identifiers.          # Disallow site-local unicast dest without outgoing scope identifiers.
         # If you configure site-locals without scope id (it is permissible          # If you configure site-locals without scope id (it is permissible
         # config for routers that are not on scope boundary), you may want          # config for routers that are not on scope boundary), you may want
         # to comment the line out.          # to comment the line out.
         route add -inet6 fec0:: -prefixlen 10 ::1 -reject > /dev/null          route -q add -inet6 fec0:: -prefixlen 10 ::1 -reject > /dev/null
   
         # Disallow "internal" addresses to appear on the wire.          # Disallow "internal" addresses to appear on the wire.
         route add -inet6 ::ffff:0.0.0.0 -prefixlen 96 ::1 -reject > /dev/null          route -q add -inet6 ::ffff:0.0.0.0 -prefixlen 96 ::1 -reject > /dev/null
   
         # Disallow packets to malicious IPv4 compatible prefix.          # Disallow packets to malicious IPv4 compatible prefix.
         route add -inet6 ::224.0.0.0 -prefixlen 100 ::1 -reject > /dev/null          route -q add -inet6 ::224.0.0.0 -prefixlen 100 ::1 -reject > /dev/null
         route add -inet6 ::127.0.0.0 -prefixlen 104 ::1 -reject > /dev/null          route -q add -inet6 ::127.0.0.0 -prefixlen 104 ::1 -reject > /dev/null
         route add -inet6 ::0.0.0.0 -prefixlen 104 ::1 -reject > /dev/null          route -q add -inet6 ::0.0.0.0 -prefixlen 104 ::1 -reject > /dev/null
         route add -inet6 ::255.0.0.0 -prefixlen 104 ::1 -reject > /dev/null          route -q add -inet6 ::255.0.0.0 -prefixlen 104 ::1 -reject > /dev/null
   
         # Disallow packets to malicious 6to4 prefix.          # Disallow packets to malicious 6to4 prefix.
         route add -inet6 2002:e000:: -prefixlen 20 ::1 -reject > /dev/null          route -q add -inet6 2002:e000:: -prefixlen 20 ::1 -reject > /dev/null
         route add -inet6 2002:7f00:: -prefixlen 24 ::1 -reject > /dev/null          route -q add -inet6 2002:7f00:: -prefixlen 24 ::1 -reject > /dev/null
         route add -inet6 2002:0000:: -prefixlen 24 ::1 -reject > /dev/null          route -q add -inet6 2002:0000:: -prefixlen 24 ::1 -reject > /dev/null
         route add -inet6 2002:ff00:: -prefixlen 24 ::1 -reject > /dev/null          route -q add -inet6 2002:ff00:: -prefixlen 24 ::1 -reject > /dev/null
   
         # Completely disallow packets to IPv4 compatible prefix.          # Completely disallow packets to IPv4 compatible prefix.
         # This may conflict with RFC1933 under following circumstances:          # This may conflict with RFC1933 under following circumstances:
Line 243 
Line 243 
         #     asked to forward it.          #     asked to forward it.
         # Due to rare use of IPv4 compatible addresses, and security issues          # Due to rare use of IPv4 compatible addresses, and security issues
         # with it, we disable it by default.          # with it, we disable it by default.
         route add -inet6 ::0.0.0.0 -prefixlen 96 ::1 -reject > /dev/null          route -q add -inet6 ::0.0.0.0 -prefixlen 96 ::1 -reject > /dev/null
   
         rtsolif=""          rtsolif=""
 else  else
Line 289 
Line 289 
 # that name must be in /etc/hosts.  # that name must be in /etc/hosts.
 if [ -f /etc/mygate ]; then  if [ -f /etc/mygate ]; then
         route delete default > /dev/null 2>&1          route delete default > /dev/null 2>&1
         route -n add -host default `cat /etc/mygate`          route -qn add -host default `cat /etc/mygate`
 fi  fi
   
 # Multicast routing.  # Multicast routing.
Line 302 
Line 302 
 #          Any other combination                -reject         config error  #          Any other combination                -reject         config error
 case "$multicast_host:$multicast_router" in  case "$multicast_host:$multicast_router" in
 NO:NO)  NO:NO)
         route -n add -net 224.0.0.0/4 -interface 127.0.0.1 -reject > /dev/null          route -qn add -net 224.0.0.0/4 -interface 127.0.0.1 -reject > /dev/null
         ;;          ;;
 NO:YES)  NO:YES)
         ;;          ;;
 *:NO)  *:NO)
         set `if [ $multicast_host = YES ]; then          set `if [ $multicast_host = YES ]; then
                 ed -s '!route -n show -inet' <<EOF                  ed -s '!route -qn show -inet' <<EOF
 /^default/p  /^default/p
 EOF  EOF
         else          else
Line 316 
Line 316 
 /^      inet /p  /^      inet /p
 EOF  EOF
         fi`          fi`
         route -n add -net 224.0.0.0/4 -interface $2 > /dev/null          route -qn add -net 224.0.0.0/4 -interface $2 > /dev/null
         ;;          ;;
 *:*)  *:*)
         echo 'config error, multicasting disabled until rc.conf is fixed'          echo 'config error, multicasting disabled until rc.conf is fixed'
         route -n add -net 224.0.0.0/4 -interface 127.0.0.1 -reject > /dev/null          route -qn add -net 224.0.0.0/4 -interface 127.0.0.1 -reject > /dev/null
         ;;          ;;
 esac  esac
   

Legend:
Removed from v.1.90  
changed lines
  Added in v.1.91