Thunderbolt: Difference between revisions
Jump to navigation
Jump to search
Line 89: | Line 89: | ||
* [https://manpages.ubuntu.com/manpages/jammy/en/man1/boltctl.1.html USB4 » Thunderbolt » <code>boltctl</code>] | * [https://manpages.ubuntu.com/manpages/jammy/en/man1/boltctl.1.html USB4 » Thunderbolt » <code>boltctl</code>] | ||
* [https://support.apple.com/en-my/HT209186 USB4 » Thunderbolt » iPad Pro] | * [https://support.apple.com/en-my/HT209186 USB4 » Thunderbolt » iPad Pro] | ||
| valign="top" | | | valign="top" | | ||
Line 112: | Line 111: | ||
| valign="top" | | | valign="top" | | ||
* [https://www.pshinecable.com/article/what-are-the-differences-between-usb-pd3-1-and-usb-pd2-0-pd3-0.html PD » 1.0 » 2.0 » 3.0 » 3.1] | |||
* [https://www.apple.com/my/ipad-pro/specs/ iPad Pro » Specification] | * [https://www.apple.com/my/ipad-pro/specs/ iPad Pro » Specification] | ||
* [[VS Code on iPad Pro]] | * [[VS Code on iPad Pro]] |
Revision as of 17:10, 14 December 2023
| |
| |
Ubuntu » Self IP: ifconfig -v thunderbolt0|grep inet Ubuntu » Peer IP: arp -a -i thunderbolt0 |
MacOS » Self IP: ifconfig -v bridge0|grep inet MacOS » Peer IP: arp -a -i bridge0 |
modprobe thunderbolt-net lspci | grep -i thunder lspci | grep -i usb |
ifconfig -v thunderbolt0| grep inet ifconfig -v bridge0 | grep inet ifconfig -v |
arp -a -i thunderbolt0 arp -a -i bridge0 arp -a |
Netplan
sudo tee /etc/netplan/30-ethernet-thunderbolt.yaml >/dev/null <<EOF
network:
version: 2
ethernets:
thunderbolt0:
link-local: [ ipv4 ]
EOF
sudo chmod 600 /etc/netplan/*.yaml
sudo netplan try
sudo apt install linux-modules-extra-raspi
sudo apt install openvswitch-switch-dpdk
sudo netplan try && sudo netplan apply
Playground
ls -lah /sys/bus/thunderbolt/devices/domain0/iommu_dma_protection
cat /sys/bus/thunderbolt/devices/domain0/iommu_dma_protection
cat /sys/bus/thunderbolt/devices/0-0/usb4_port1/link
ls -lah /sys/bus/thunderbolt/devices/0-0/usb4_port*
ls -lah /sys/bus/thunderbolt/devices/domain0/security
cat /sys/bus/thunderbolt/devices/domain0/security
ls -lah /sys/bus/thunderbolt/devices/0-1/
ls -lah /sys/bus/thunderbolt/devices/
cat /etc/udev/rules.d/99-local.rules
ls -lah /etc/udev/rules.d/
lspci | grep -i thunder
lspci | grep -i usb
lsmod | grep thund
boltctl list -a
lspci -v
References
| ||