Skip to content

Instantly share code, notes, and snippets.

@eggie5
Created April 20, 2012 23:03
Show Gist options
  • Select an option

  • Save eggie5/2432523 to your computer and use it in GitHub Desktop.

Select an option

Save eggie5/2432523 to your computer and use it in GitHub Desktop.
cat network
config 'interface' 'loopback'
option 'ifname' 'lo'
option 'proto' 'static'
option 'ipaddr' '127.0.0.1'
option 'netmask' '255.0.0.0'
config 'interface' 'lan'
option 'ifname' 'eth1'
option 'type' 'bridge'
option 'proto' 'static'
option 'netmask' '255.255.255.0'
option 'ipaddr' '192.168.2.1'
config 'interface' 'wan'
option 'ifname' 'eth0'
option 'proto' 'dhcp'
config 'switch'
option 'name' 'switch0'
option 'reset' '1'
option 'enable_vlan' '1'
config 'switch_vlan'
option 'device' 'switch0'
option 'vlan' '1'
option 'ports' '0 1 2 3 4'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment