Differences
This shows you the differences between two versions of the page.
| Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
| linux_router:network [2023-07-04 Tue wk27 19:38] – [Router Configuration Network Setup] baumkp | linux_router:network [2025-08-17 Sun wk33 08:23] (current) – [ipv6 Hurricane Electric Setup notes] baumkp | ||
|---|---|---|---|
| Line 1: | Line 1: | ||
| {{tag> | {{tag> | ||
| - | ======Debian | + | ======Debian |
| - | ====Debian | + | ====Debian Network - Server |
| As of Debian 10 (Buster) Debian still by default uses this interface Setup. | As of Debian 10 (Buster) Debian still by default uses this interface Setup. | ||
| Line 19: | Line 19: | ||
| # This file describes the network interfaces available on your system | # This file describes the network interfaces available on your system | ||
| # and how to activate them. For more information, | # and how to activate them. For more information, | ||
| - | | + | |
| + | | ||
| + | | ||
| # The loopback network interface | # The loopback network interface | ||
| auto lo | auto lo | ||
| Line 25: | Line 27: | ||
| # The WAN network interface | # The WAN network interface | ||
| - | auto eno1 | + | auto eno1 eno1:0 |
| - | iface eno1 inet static | + | iface eno1 inet dhcp |
| - | # set up ip address to access modem web page on WAN NIC | + | # dhcp for IP/DHCP WAN (static? for PPPOE) |
| + | # set up static | ||
| + | iface eno1:0 inet static | ||
| address 192.168.5.2/ | address 192.168.5.2/ | ||
| - | # broadcast 192.168.5.255 #is this require any more? | ||
| # Then LAN networks are eno2 eno3 eno4 in bridged mode br1 | # Then LAN networks are eno2 eno3 eno4 in bridged mode br1 | ||
| # on the 192.168.1.1 subnet | # on the 192.168.1.1 subnet | ||
| - | auto br1 | + | auto br0 |
| - | iface br1 inet static | + | iface br0 inet static |
| bridge_ports eno2 eno3 eno4 | bridge_ports eno2 eno3 eno4 | ||
| address 192.168.1.1/ | address 192.168.1.1/ | ||
| - | | + | |
| - | #netmask 255.255.255.0 #is this require any more? | + | |
| - | # | + | |
| - | dns-nameservers 192.168.1.1 | + | |
| bridge_stp off # disable Spanning Tree Protocol | bridge_stp off # disable Spanning Tree Protocol | ||
| #bridge_fd 9 # forwarding delay # use default? | #bridge_fd 9 # forwarding delay # use default? | ||
| Line 66: | Line 66: | ||
| Each Ethernet hardware connection has its own defined unique MAC number, no need to define another. If Ethernet bonding were being used there maybe a need to use this stanza. | Each Ethernet hardware connection has its own defined unique MAC number, no need to define another. If Ethernet bonding were being used there maybe a need to use this stanza. | ||
| #hwaddress ether xx: | #hwaddress ether xx: | ||
| + | |||
| + | The " | ||
| + | |||
| + | The old fashion way was to manual assign as follows: | ||
| + | address 192.168.1.32 | ||
| + | network 192.168.1.0 | ||
| + | netmask 255.255.255.0 | ||
| + | broadcast 192.168.1.255 | ||
| + | Perhaps this is still required in special cases? | ||
| + | |||
| </ | </ | ||
| ++++ | ++++ | ||
| Line 76: | Line 86: | ||
| =====Network - Netplan Setup===== | =====Network - Netplan Setup===== | ||
| + | ++++tl;dr;| | ||
| Debian still defaults to the interface style network setup. It can be set up to use netplan. | Debian still defaults to the interface style network setup. It can be set up to use netplan. | ||
| Line 100: | Line 110: | ||
| The remaining 3 NICs are setup in bridge mode as router LAN ports. When setup in bridge mode the 3 ports effectively act as a switch with any able to access the router LAN on 192.168.1.1 . | The remaining 3 NICs are setup in bridge mode as router LAN ports. When setup in bridge mode the 3 ports effectively act as a switch with any able to access the router LAN on 192.168.1.1 . | ||
| + | ++++ | ||
| See the Netplan configuration below: | See the Netplan configuration below: | ||
| ++++'' | ++++'' | ||
| Line 151: | Line 161: | ||
| gateway6: " | gateway6: " | ||
| </ | </ | ||
| - | ++++ | ||
| *'' | *'' | ||
| *'' | *'' | ||
| Line 162: | Line 171: | ||
| The use of the stanza " | The use of the stanza " | ||
| + | ++++ | ||
| It is important that the network/ | It is important that the network/ | ||
| Basically ensure that all items in file / | Basically ensure that all items in file / | ||
| Line 185: | Line 194: | ||
| ====ipv6 Hurricane Electric Setup notes==== | ====ipv6 Hurricane Electric Setup notes==== | ||
| + | ++++tl;dr;| | ||
| I set up the router network tunnel 6in4 to HEipv6. | I set up the router network tunnel 6in4 to HEipv6. | ||
| The main tunnel connection is set up in the main network configuration file(s).\\ | The main tunnel connection is set up in the main network configuration file(s).\\ | ||
| My routing table had '' | My routing table had '' | ||
| - | I looked for ways to adjust the netplan configuration, | + | I looked for ways to adjust the netplan configuration, |
| To create and edit the service: '' | To create and edit the service: '' | ||
| ++++ipv6_start.service| | ++++ipv6_start.service| | ||