Preparation
Ensure that network manager has been stopped and then bring the interface down.
sudo /etc/dbus-1/event.d/25NetworkManager stop
sudo ifdown eth1
Configuration
Switch the card into ad hoc mode
-
sudo iwconfig eth1 mode ad-hoc
Set the channel/frequency that you want to use.
-
sudo iwconfig eth1 channel 11
Add the name (ssid) for the network you want to create/join. Use single quotes if there is a space in the name.
-
sudo iwconfig eth1 essid 'name'
Add a WEP encryption key
-
sudo iwconfig eth1 key 1234567890
Activation
Bring the interface back up
-
sudo ifconfig eth1 up
Start dhclient to get an address
-
sudo dhclient eth1
If you want to do it manually, you will have to make up an IP address.
-
sudo ifconfig eth1 10.0.0.1 netmask 255.255.255.0
iptables -t nat -A POSTROUTING -o eth0 -j MASQUERADE
Reference
https://help.ubuntu.com/community/WifiDocs/Adhoc
No comments:
Post a Comment