Diff for /elwix/config/etc/default/rc.d/011.adhoc.stop between versions 1.2 and 1.2.18.1

version 1.2, 2011/11/02 09:51:32 version 1.2.18.1, 2015/03/05 22:31:59
Line 4  BSSID="00:50:43:20:6f:a9" Line 4  BSSID="00:50:43:20:6f:a9"
   
 IFACE="wlan0"  IFACE="wlan0"
 WIFIDEV="ath0"  WIFIDEV="ath0"
   CLONEOPTS=""
   
 REGDOMAIN=""  REGDOMAIN=""
 COUNTRY=""  COUNTRY=""
Line 13  CHAN="36:a" Line 14  CHAN="36:a"
 BINT="100"  BINT="100"
 WIFIOPTS=""  WIFIOPTS=""
   
OPT=""OPTS=""
 IP="172.31.1.1/30"  IP="172.31.1.1/30"
   
   [ -z "$IFACE" -o -z "$WIFIDEV" ] && exit
   
 echo "Config wireless AdHoc interface $IFACE ..."  echo "Config wireless AdHoc interface $IFACE ..."
   
ifconfig $IFACE create wlandev $WIFIDEV wlanmode ibssifconfig $IFACE create wlandev $WIFIDEV $CLONEOPTS wlanmode ibss || exit
#ifconfig $IFACE regdomain $REGDOMAINif [ -n "$REGDOMAIN" ]; then
#ifconfig $IFACE country $COUNTRY        ifconfig $IFACE regdomain $REGDOMAIN
ifconfig $IFACE $WIFIOPTSfi
ifconfig $IFACE bintval $BINTif [ -n "$COUNTRY" ]; then
ifconfig $IFACE channel $CHAN        ifconfig $IFACE country $COUNTRY
fi
if [ -n "$WIFIOPTS" ]; then
ifconfig $IFACE ssid $SSID        ifconfig $IFACE $WIFIOPTS
ifconfig $IFACE inet ${IP} ${OPT} upfi
 if [ -n "$BINT" ]; then
         ifconfig $IFACE bintval $BINT
 fi
 if [ -n "$CHAN" ]; then
         ifconfig $IFACE channel $CHAN
 fi
 if [ -n "$SSID" ]; then
         ifconfig $IFACE ssid $SSID
 fi
 if [ -n "$IP" ]; then
         ifconfig $IFACE inet $IP
 fi
 ifconfig $IFACE $OPTS up
   
 [ -x /etc/sysctl.$IFACE ] && /etc/sysctl.$IFACE  [ -x /etc/sysctl.$IFACE ] && /etc/sysctl.$IFACE
   

Removed from v.1.2  
changed lines
  Added in v.1.2.18.1


FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>