Ustawienia rc.local – maskarada

Plik rc.local zawierający ustawienia sieciowe. Których używalem przy Internecie bezprzewodowym – firmy Alfanet.

#!/bin/sh -e
#
# rc.local
#
# This script is executed at the end of each multiuser runlevel.
# Make sure that the script will „exit 0” on success or any other
# value on error.
#
# In order to enable or disable this script just change the execution
# bits.
#
# By default this script does nothing.
echo 1 >/proc/sys/net/ipv4/ip_forward
iptables -t nat -A POSTROUTING -s 192.168.0.2 -j MASQUERADE
iwconfig wlan0 essid tutaj_essid mode managed
exit 0

Dodaj komentarz