blob: 3dbf9b40a27be62b14922afa75ea59b2ab67ffe9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
# iface eth0 inet static
# address 192.168.10.1
# netmask 255.255.255.0
# # post-up ipsec restart
auto br0 eth0
iface br0 inet static
# pre-up echo 0 > /proc/sys/net/ipv6/conf/br0/accept_ra_pinfo # disable ipv6 auto-address
pre-up for n in 0 1 2 3 4; do tunctl -t tap$n; done; true
pre-down for n in 0 1 2 3 4; do tunctl -d tap$n; done; true
address 192.168.10.1
netmask 255.255.255.0
bridge_ports eth0 tap0 tap1 tap2 tap3 tap4
bridge_maxwait 10
up iptables -t nat -A POSTROUTING -o wlan0 -j MASQUERADE
up sysctl -w net.ipv4.ip_forward=1
iface eth0 inet manual
|