- install lldpctl with
apt install lldpd
- add
thunderbolt
andthunderbolt-net
kernel modules (this must be done all nodes - yes i know it can sometimes work withoutm but the thuderbolt-net one has interesting behaviou' so do as i say - add both ;-)nano /etc/modules
add modules at bottom of file, one on each line- save using
x
theny
thenenter
doing this means we don't have to give each thunderbolt a manual IPv6 addrees and that these addresses stay constant no matter what
Add the following to each node using nano /etc/network/interfaces
If you see any sections called thunderbolt0 or thunderbol1 delete them at this point.
Now add the following (note we will set IP addresses in the UI):
auto en05
iface en05 inet static
mtu 4000
iface en05 inet6 static
mtu 4000
auto en06
iface en06 inet static
mtu 4000
iface en06 inet6 static
mtu 4000
If you see any thunderbol sections delete them from the file before you save it.
This is needed as proxmox doesn't recognize the thunderbolt interface name. There are various methods to do this. This method was selected after trial and error because:
- the thunderboltX naming is not fixed to a port (it seems to be based on sequence you plug the cables in)
- the MAC address of the interfaces changes with most cable insertion and removale events
-
use
udevadm monitor
command to find your device IDs when you insert and remove each TB4 cable. Yes you can use other ways to do this, i recommend this one as it is great way to understand what udev does - the command proved more useful to me thanthe syslog
orlspci command
for troublehsooting thunderbolt issues and behavious. In my case my two pci paths are0000:00:0d.2
and0000:00:0d.3
if you bought the same hardware this will be the same on all 3 units. Don't assume your PCI device paths will be the same as mine. -
create a link file using
nano /etc/systemd/network/00-thunderbolt0.link
and enter the following content:
[Match]
Path=pci-0000:00:0d.2
Driver=thunderbolt-net
[Link]
MACAddressPolicy=none
Name=en05
- create a second link file using
nano /etc/systemd/network/00-thunderbolt1.link
and enter the following content:
[Match]
Path=pci-0000:00:0d.3
Driver=thunderbolt-net
[Link]
MACAddressPolicy=none
Name=en06
This section en sure that the interfaces will be brought up at boot or cable insertion with whatever settings are in /etc/network/interfaces - this shouldn't need to be done, it seems like a bug in the way thunderbolt networking is handled (i assume this is debian wide but haven't checked).
- create a udev rule to detect for cable insertion using
nano /etc/udev/rules.d/10-tb-en.rules
with the following content:
ACTION=="move", SUBSYSTEM=="net", KERNEL=="en05", RUN+="/usr/local/bin/pve-en05.sh"
ACTION=="move", SUBSYSTEM=="net", KERNEL=="en06", RUN+="/usr/local/bin/pve-en06.sh"
-
save the file
-
create the first script referenced above using
nano /usr/local/bin/pve-en05.sh
and with the follwing content:
#!/bin/bash
# this brings the renamed interface up and reprocesses any settings in /etc/network/interfaces for the renamed interface
/usr/sbin/ifup en05
save the file and then
- create the second script referenced above using
nano /usr/local/bin/pve-en06.sh
and with the follwing content:
#!/bin/bash
# this brings the renamed interface up and reprocesses any settings in /etc/network/interfaces for the renamed interface
/usr/sbin/ifup en06
and save the file
- make both scripts executable with
chmod +x /usr/local/bin/*.sh
- Reboot (restarting networking, init 1 and init 3 are not good enough, so reboot)
- At this point you can now use the proxmox ui (
Datacenter > nodename > network
to set the IP addresses in CIDR notation. - Click
Apply Configuration
- perform
ip addr
in the entries you should see something like this (assuming you set IPv4 and IPv6 - note my IPv6 network address is redacted below with Xs):
6: en05: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 9000 qdisc pfifo_fast state UP group default qlen 1000
link/ether 02:e5:4a:ad:e4:64 brd ff:ff:ff:ff:ff:ff
inet 192.168.50.81/24 scope global en05
valid_lft forever preferred_lft forever
inet6 xxxx:xxxx:xxxx:50::81/64 scope global
valid_lft forever preferred_lft forever
inet6 fe80::e5:4aff:fead:e464/64 scope link
valid_lft forever preferred_lft forever
7: en06: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 9000 qdisc pfifo_fast state UP group default qlen 1000
link/ether 02:46:9f:8e:35:16 brd ff:ff:ff:ff:ff:ff
inet 192.168.60.81/24 scope global en06
valid_lft forever preferred_lft forever
inet6 xxxx:xxxx:xxxxx:60::81/64 scope global
valid_lft forever preferred_lft forever
inet6 fe80::46:9fff:fe8e:3516/64 scope link
valid_lft forever preferred_lft forever
If not check all your steps in this section VERY carefully (oh and that your cables are connected)
*Ok now you your base networking should be in a good state, note you still have no IP connectivity over the TB links, that comes next.s