]> git.ipfire.org Git - people/pmueller/ipfire-2.x.git/blame - src/initscripts/init.d/hostapd
Merge remote-tracking branch 'mfischer/python' into next
[people/pmueller/ipfire-2.x.git] / src / initscripts / init.d / hostapd
CommitLineData
07603508
CS
1#!/bin/sh
2. /etc/sysconfig/rc
3. ${rc_functions}
4
040ec360 5CHANNEL="6"
c3d9a16d 6COUNTRY="00"
54359730
CS
7TXPOWER="auto"
8INTERFACE="blue0"
79ef49bd 9MACMODE="0"
79ef49bd 10
b9694349 11eval $(/usr/local/bin/readhash /var/ipfire/wlanap/settings)
54359730 12
54359730 13case "${1}" in
8aa49c15 14 start)
54359730 15 mkdir -p /var/run/hostapd
54359730 16
7429ec82
AF
17 boot_mesg "Starting hostapd... "
18
19 # Check Interface configuration
20 if ! ip link show $INTERFACE > /dev/null 2>&1; then
c485b902 21 boot_mesg "Interface $INTERFACE doesn't exist." ${FAILURE}
7429ec82
AF
22 echo_failure
23 exit 0
24 fi
25 if [ "$(ip link show $INTERFACE | /bin/grep "ether")" == "" ]; then
26 boot_mesg "Interface $INTERFACE is assigned to wlan master device." ${FAILURE}
27 boot_mesg "Please reboot to fix this." ${FAILURE}
28 echo_failure
29 exit 0
30 fi
31 if [ "$(iwconfig $INTERFACE | /bin/grep "IEEE")" == "" ]; then
32 boot_mesg "Interface $INTERFACE is no wireless device." ${FAILURE}
33 echo_failure
34 exit 0
35 fi
36
37 # Detect driver
38 if [ -e "/sys/class/net/$INTERFACE/phy80211" ]; then
39 DRIVER="NL80211"
40 driver="nl80211"
071a0314 41 elif [ "$(/bin/grep hostap /sys/class/net/$INTERFACE/uevent)" != "" ]; then
8d30f4ed
AF
42 DRIVER="HOSTAP"
43 driver="hostap"
7429ec82
AF
44 else
45 boot_mesg "Interface $INTERFACE is a not supported wireless device." ${FAILURE}
46 echo_failure
47 exit 0
48 fi
49
50 echo driver=$driver > /etc/hostapd.conf.tmp
51 grep -v "^driver=" /etc/hostapd.conf >> /etc/hostapd.conf.tmp
52 mv /etc/hostapd.conf.tmp /etc/hostapd.conf
53
54 echo DRIVER=$DRIVER > /var/ipfire/wlanap/settings.tmp
55 grep -v "^DRIVER=" /var/ipfire/wlanap/settings >> /var/ipfire/wlanap/settings.tmp
56 chown nobody:nobody /var/ipfire/wlanap/settings.tmp
57 chmod 644 /var/ipfire/wlanap/settings.tmp
58 mv /var/ipfire/wlanap/settings.tmp /var/ipfire/wlanap/settings
59
040ec360 60 if [ "$DRIVER" == "HOSTAP" ]; then
8d30f4ed
AF
61 if [ "$(/usr/sbin/iwconfig $INTERFACE | /bin/grep "Mode:Master")" == "" ]; then
62 boot_mesg "Setting HOSTAP wlan $INTERFACE to Master mode... "
071a0314 63 # Set Prism Cards to master mode
8d30f4ed
AF
64 /usr/bin/iwconfig $INTERFACE mode master > /dev/null
65 fi
8aa49c15 66 fi
54359730 67
6a79396c
AF
68 # First set to any country then reset to World (00)
69 # and then set new country because the card is only
70 # reprogrammed if the region was changed.
71 /usr/sbin/iw reg set DE
c3d9a16d
AF
72 /usr/sbin/iw reg set 00
73 /usr/sbin/iw reg set $COUNTRY
74
c1fd7bc5 75 /usr/sbin/iwconfig $INTERFACE channel $CHANNEL 2>/dev/null
79ef49bd 76 /usr/sbin/iwconfig $INTERFACE txpower $TXPOWER
7429ec82 77
61160760 78 /usr/bin/hostapd -P /var/run/hostapd /etc/hostapd.conf >/dev/null 2>&1 &
79ef49bd 79
040ec360 80 sleep 3
7429ec82 81
54359730 82 if [ "$(/usr/sbin/iwconfig $INTERFACE | /bin/grep "Mode:Master")" == "" ]; then
d1b89a12
AF
83 killproc /usr/bin/hostapd > /dev/null 2>&1
84 boot_mesg "Try to create additional AP device ..."
85 ip link set ${INTERFACE} down
86 ip link set ${INTERFACE} name ${INTERFACE}_man
87 iw dev ${INTERFACE}_man interface add ${INTERFACE} type __ap
88 evaluate_retval;
9c47987e
AF
89 if [ -d /sys/class/net/${INTERFACE} ]; then
90 /usr/bin/hostapd -P /var/run/hostapd /etc/hostapd.conf >/dev/null 2>&1 &
91 else
92 ip link set ${INTERFACE}_man down
93 ip link set ${INTERFACE}_man name ${INTERFACE}
94 fi
79ef49bd 95 exit 0;
54359730 96 else
79ef49bd 97 echo_ok
54359730 98 fi
8aa49c15 99 ;;
54359730 100
8aa49c15 101 stop)
54359730 102 boot_mesg "Stopping hostapd..."
d1b89a12
AF
103 ip link set ${INTERFACE} down > /dev/null 2>&1
104 ip link set ${INTERFACE} down_man > /dev/null 2>&1
105 sleep 1
8aa49c15
CS
106 killproc /usr/bin/hostapd
107 evaluate_retval
108 ;;
54359730 109
8aa49c15
CS
110 restart)
111 ${0} stop
112 sleep 1
113 ${0} start
114 ;;
54359730 115
8aa49c15
CS
116 status)
117 statusproc /usr/bin/hostapd
118 ;;
54359730 119
8aa49c15
CS
120 *)
121 echo "Usage: ${0} {start|stop|restart|status}"
122 exit 1
123 ;;
54359730 124esac