2025年 4月5日(土) 06:52 JST

bridge network

  • 2011年 2月11日(金) 01:19 JST
  • 投稿者:
  • 表示回数 103

canaryの場合

$ cat /etc/network/interfaces
# This file describes the network interfaces available on your system
# and how to activate them. For more information, see interfaces(5).

# The loopback network interface
auto lo
iface lo inet loopback
#allow-hotplug eth0
auto eth0
iface eth0 inet static
address 211.126.200.37
netmask 255.255.255.248
network 211.126.200.32
broadcast 211.126.200.39
gateway 211.126.200.33
# dns-* options are implemented by the resolvconf package, if installed
dns-nameservers 211.126.200.34
dns-search craine.ne.jp
# The primary network interface
# allow-hotplug eth1
auto br0
iface br0 inet static
address 172.20.0.250
netmask 255.255.255.0
network 172.20.0.0
broadcast 172.20.0.255
# dns-* options are implemented by the resolvconf package, if installed
#dns-nameservers 172.20.0.254
#dns-search in.craine.ne.jp
pre-up /usr/sbin/openvpn --mktun --dev tap0
pre-up /sbin/ifconfig tap0 0.0.0.0 promisc up
pre-up /sbin/ifconfig eth1 0.0.0.0 promisc up
pre-up /usr/sbin/brctl addbr br0
pre-up /usr/sbin/brctl addif br0 tap0
pre-up /usr/sbin/brctl addif br0 eth1
post-down /usr/sbin/brctl delif br0 eth1
post-down /usr/sbin/brctl delif br0 tap0
post-down /usr/sbin/brctl delbr br0
post-down /usr/sbin/openvpn --rmtun --dev tap0
post-down /sbin/ifconfig eth1 0.0.0.0 down
#post-down ifconfig tap0 0.0.0.0 down
# The primary network interface
# # allow-hotplug eth1
#auto eth1
#iface eth1 inet static
# address 0.0.0.0
#auto tap0
#iface tap0 inet static
#address 0.0.0.0
 

swallowの場合 interfaces.openvpn 
# This file describes the network interfaces available on your system
# and how to activate them. For more information, see interfaces(5).
 
# The loopback network interface
auto lo
iface lo inet loopback
#allow-hotplug eth0
auto eth0
iface eth0 inet static
        address 211.126.200.35
        netmask 255.255.255.248
        network 211.126.200.32
        broadcast 211.126.200.39
        gateway 211.126.200.33
        # dns-* options are implemented by the resolvconf package, if installed
        dns-nameservers 211.126.200.34
        dns-search craine.ne.jp
# The primary network interface
# allow-hotplug eth1
auto br0
iface br0 inet static
        address 172.20.0.253
        netmask 255.255.255.0
        network 172.20.0.0
        broadcast 172.20.0.255
        # dns-* options are implemented by the resolvconf package, if installed
        #dns-nameservers 172.20.0.254
        #dns-search in.craine.ne.jp
        pre-up /usr/sbin/openvpn --mktun --dev tap0
        pre-up /sbin/ifconfig tap0 0.0.0.0 promisc up
        pre-up /sbin/ifconfig eth1 0.0.0.0 promisc up
        pre-up /usr/sbin/brctl addbr br0
        pre-up /usr/sbin/brctl addif br0 tap0
        pre-up /usr/sbin/brctl addif br0 eth1
        post-down /usr/sbin/brctl delif br0 eth1
        post-down /usr/sbin/brctl delif br0 tap0
        post-down /usr/sbin/brctl delbr br0
        post-down /usr/sbin/openvpn --rmtun --dev tap0
        post-down /sbin/ifconfig eth1 0.0.0.0 down
        #post-down ifconfig tap0 0.0.0.0 down
# The primary network interface
# # allow-hotplug eth1
#auto eth1
#iface eth1 inet static
#        address 0.0.0.0
#auto tap0
#iface tap0 inet static
        #address 0.0.0.0