Skip to content

Instantly share code, notes, and snippets.

@Ovis
Created January 8, 2020 05:10
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Ovis/4831aefdf613026c613fc98ed9f8da71 to your computer and use it in GitHub Desktop.
Save Ovis/4831aefdf613026c613fc98ed9f8da71 to your computer and use it in GitHub Desktop.
SoftEther Bridge用設定
## loopback
auto lo
iface lo inet loopback
## Ethernet port
auto eth0
iface eth0 inet manual
## Bridge interface
auto br0
iface br0 inet static
#固定するIPアドレス
address 192.168.xxx.yyy
netmask 255.255.255.0
#ネットワークのアドレス
network 192.168.xxx.0
#ブロードキャストアドレス
broadcast 192.168.xxx.255
# ルータのIPアドレス
gateway 192.168.xxx.zzz
bridge_ports eth0
##Etc
auto wlan0
allow-hotplug wlan0
iface wlan0 inet manual
wpa-roam /etc/wpa_supplicant/wpa_supplicant.conf
iface default inet dhcp
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment