Erinevus lehekülje "FreeBSD wifi ap" redaktsioonide vahel
Allikas: Kuutõrvaja
1. rida: | 1. rida: | ||
+ | Antud õpetus räägib kuidas enda wifi kaarti sisaldab FreeBSD ruuter | ||
+ | muuta wifi access pointiks | ||
+ | |||
+ | |||
+ | Muudame r.conf'i /etc kataloomas | ||
+ | |||
pccard_enable="YES" # Set to YES if you want to configure PCCARD devices. | 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" | pccard_ifconfig="inet 10.0.0.2 netmask 255.255.255.0" | ||
10. rida: | 16. rida: | ||
dhcpd_ifaces="wi0" # ethernet interface(s) | dhcpd_ifaces="wi0" # ethernet interface(s) | ||
+ | |||
+ | /etc/ipnat.conf'i nat'i tegemine | ||
#nati pordid | #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 portmap tcp/udp 40000:65000 | ||
map ed0 192.168.0.0/24 -> 0.0.0.0/32 | map ed0 192.168.0.0/24 -> 0.0.0.0/32 | ||
+ | |||
+ | installime isc-dhcpd3-server ja teeme talle konfiguratsiooni /usr/local/etc/dhcpd.conf | ||
default-lease-time 21600; | default-lease-time 21600; | ||
29. rida: | 39. rida: | ||
} | } | ||
+ | Skript mis stardib wifi võrku jagamise | ||
wireless.sh | wireless.sh | ||
63. rida: | 74. rida: | ||
wicontrol -s "myap" | wicontrol -s "myap" | ||
− | # | + | # Seadistame wep võtme (muuda endale sobivaks) |
wicontrol -k "12345" | wicontrol -k "12345" | ||
− | # | + | # Lubame WEP'i |
wicontrol -e 1 | wicontrol -e 1 | ||
− | # | + | # Muudame SSID nime enda wifiruuteril |
ifconfig wi0 ssid "myap" | ifconfig wi0 ssid "myap" | ||
− | # | + | # Anname wifi kaardile ip. See hakkab olema nüüd gw ip edaspidi kõigile klientidele |
− | + | ifconfig wi0 inet 192.168.3.1 netmask 255.255.255.0 | |
− | ifconfig wi0 inet |
Redaktsioon: 15. juuli 2007, kell 14:38
Antud õpetus räägib kuidas enda wifi kaarti sisaldab FreeBSD ruuter muuta wifi access pointiks
Muudame r.conf'i /etc kataloomas
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)
/etc/ipnat.conf'i nat'i tegemine
#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
installime isc-dhcpd3-server ja teeme talle konfiguratsiooni /usr/local/etc/dhcpd.conf
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; }
Skript mis stardib wifi võrku jagamise
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" # Seadistame wep võtme (muuda endale sobivaks) wicontrol -k "12345" # Lubame WEP'i wicontrol -e 1 # Muudame SSID nime enda wifiruuteril ifconfig wi0 ssid "myap" # Anname wifi kaardile ip. See hakkab olema nüüd gw ip edaspidi kõigile klientidele ifconfig wi0 inet 192.168.3.1 netmask 255.255.255.0