Erinevus lehekülje "FreeBSD wifi ap" redaktsioonide vahel
Allikas: Kuutõrvaja
46. rida: | 46. rida: | ||
# will be 'ancontrol'. Again, make sure to man xxxcontrol for the | # will be 'ancontrol'. Again, make sure to man xxxcontrol for the | ||
# proper documentation. | # proper documentation. | ||
− | + | ||
# Set the channel of the wireless network to 5 | # Set the channel of the wireless network to 5 | ||
wicontrol -f 5 | wicontrol -f 5 | ||
53. rida: | 53. rida: | ||
# want the network set in ad hoc mode. | # want the network set in ad hoc mode. | ||
wicontrol -p 1 | wicontrol -p 1 | ||
− | + | ||
# Set the extension of BSS to IBSS. Currently, the switch -c that | # Set the extension of BSS to IBSS. Currently, the switch -c that | ||
# changes that setting doesn't completely work for wicontrol but | # changes that setting doesn't completely work for wicontrol but | ||
62. rida: | 62. rida: | ||
# controls see 'man wicontrol'). | # controls see 'man wicontrol'). | ||
wicontrol -s "myap" | wicontrol -s "myap" | ||
− | + | ||
# Set the WEP key (change this accordingly) | # Set the WEP key (change this accordingly) | ||
wicontrol -k "12345" | wicontrol -k "12345" | ||
− | + | ||
# Enable WEP | # Enable WEP | ||
wicontrol -e 1 | wicontrol -e 1 | ||
− | + | ||
# set the SSID of your AP | # set the SSID of your AP | ||
ifconfig wi0 ssid "myap" | ifconfig wi0 ssid "myap" | ||
− | + | ||
# set the IP and netmask of the wifi card - this is going | # set the IP and netmask of the wifi card - this is going | ||
# to be the gateway ip | # to be the gateway ip | ||
ifconfig wi0 inet 10.2.3.1 netmask 255.255.255.0 | ifconfig wi0 inet 10.2.3.1 netmask 255.255.255.0 |
Redaktsioon: 8. august 2006, kell 10:54
pccard_enable="YES" # Set to YES if you want to configure PCCARD devices. pccard_ifconfig="inet 10.0.0.2 netmask 255.255.255.0"
ipnat_enable="YES" ipnat_rules="/etc/ipnat.conf"
dhcpd_enable="YES" dhcpd_flags="-q" # command option(s) dhcpd_conf="/usr/local/etc/dhcpd.conf" # configuration file dhcpd_ifaces="wi0" # ethernet interface(s)
#nati pordid map ed0 192.168.0.0/24 -> 0.0.0.0/32 portmap tcp/udp 40000:65000 map ed0 192.168.0.0/24 -> 0.0.0.0/32
default-lease-time 21600; max-lease-time 7200; ddns-update-style none; log-facility local7; ignore client-updates; subnet 192.168.3.0 netmask 255.255.255.0 { range 192.168.3.5 192.168.3.200; option subnet-mask 255.255.255.0; option broadcast-address 192.168.3.255; option routers 192.168.3.1; option domain-name-servers 194.126.115.18, 194.126.101.34; }
wireless.sh
#!/bin/sh # Created: 10 July 2002 # Maintained by: Steven N. Fettig - freebsd-ap@stevenfettig.com # Last modified: 23 July 2002 # This script was created off suggestions found in: # http://www.samag.com/documents/s=7121/sam0205a/sam0205a.htm # For more information on the controls used in this script, PLEASE # 'man wicontrol' - it is chock full of important settings/info. # Remember also that 'wicontrol' is used for wi based PC Cards. If # for example, you are using an Aeronet card, your actual command # will be 'ancontrol'. Again, make sure to man xxxcontrol for the # proper documentation. # Set the channel of the wireless network to 5 wicontrol -f 5 # Set the wifi adapter to infrastructure mode - i.e. we do not # want the network set in ad hoc mode. wicontrol -p 1 # Set the extension of BSS to IBSS. Currently, the switch -c that # changes that setting doesn't completely work for wicontrol but # should in the future. Refer to 'man wicontrol' for more information. wicontrol -c 1 # name the server and AP (this is primarily used for diagnostic # controls see 'man wicontrol'). wicontrol -s "myap" # Set the WEP key (change this accordingly) wicontrol -k "12345" # Enable WEP wicontrol -e 1 # set the SSID of your AP ifconfig wi0 ssid "myap" # set the IP and netmask of the wifi card - this is going # to be the gateway ip ifconfig wi0 inet 10.2.3.1 netmask 255.255.255.0