Hi Guys,
I'm wanting my linux machine to set it's network settings during boot, so I've done the following
Changed my /etc/network/interfaces to
Created a script like so
With this content
Set it's permissions
Created a symbolic link
Rebooted
Ok so it boots up ok and it's sitting on the login screen, when I try to ping it however it doesn't reply! What's wrong??
Thanks,
Paul
I'm wanting my linux machine to set it's network settings during boot, so I've done the following
Changed my /etc/network/interfaces to
Code:
auto lo
iface lo inet loopback
auto wlan0
iface wlan0 inet static
wireless-essid xxxxxx
wireless-key xxxxxxxxxxxx
wireless-channel 13
address 192.168.0.3
netmask 255.255.255.0
gateway 192.168.0.1
Created a script like so
Code:
sudo gedit /etc/init.d/wireless-network
With this content
Code:
/etc/init.d/networking restart
Set it's permissions
Code:
sudo chmod +x /etc/init.d/wireless-network
Created a symbolic link
Code:
sudo ln -s /etc/init.d/wireless-network /etc/rcS.d/S40wireless-network
Rebooted
Code:
reboot
Ok so it boots up ok and it's sitting on the login screen, when I try to ping it however it doesn't reply! What's wrong??
Thanks,
Paul