diff options
| author | seth <[email protected]> | 2023-05-07 23:17:33 -0400 |
|---|---|---|
| committer | seth <[email protected]> | 2023-05-07 23:17:33 -0400 |
| commit | 6e49c227c18d4f3008318aaa0a38a36c4de7f6c9 (patch) | |
| tree | 0b8fa202bda8cf72b2d282f51691d05b069119d7 /hosts/turret/files/etc/config/network | |
| parent | 07f726290d5f5d3898efdd95f629b14bcd311360 (diff) | |
hosts: remove prefix from turret
Diffstat (limited to 'hosts/turret/files/etc/config/network')
| -rw-r--r-- | hosts/turret/files/etc/config/network | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/hosts/turret/files/etc/config/network b/hosts/turret/files/etc/config/network new file mode 100644 index 0000000..c71cf98 --- /dev/null +++ b/hosts/turret/files/etc/config/network @@ -0,0 +1,29 @@ + +config interface 'loopback' + option device 'lo' + option proto 'static' + option ipaddr '127.0.0.1' + option netmask '255.0.0.0' + +config globals 'globals' + option packet_steering '1' + option ula_prefix 'fd26:3166:dece::/48' + +config device + option name 'br-lan' + option type 'bridge' + list ports 'lan2' + list ports 'lan3' + list ports 'lan4' + +config interface 'lan' + option device 'br-lan' + option proto 'static' + option ipaddr '192.168.1.1' + option netmask '255.255.255.0' + option ip6assign '60' + +config interface 'wan' + option device 'lan1' + option proto 'dhcp' + |
