
Ich habe eine Maschine mit 3 Netzwerkkartenadaptern gebaut. Innerhalb konfigurierter Netzwerke funktioniert alles, aber es sieht so aus, als ob das Routing nicht richtig funktioniert:
ping 8.8.8.8
ping: connect: Network is unreachable
Hier ist meine Konfiguration:
/etc/netplan/00-installer-config.yaml:
network:
version: 2
ethernets:
ens160:
addresses:
- 172.16.1.114/16
match:
macaddress: 00:50:56:aa:00:1d
nameservers:
addresses:
- 172.16.1.11
- 172.16.1.20
search:
- domain.com
set-name: produzione
routes:
- to: 0.0.0.0/0
via: 172.16.1.1
table: 60
routing-policy:
- from: 172.16.1.114
table: 60
priority: 300
ens192:
addresses:
- 172.21.2.114/16
match:
macaddress: 00:50:56:aa:6f:ed
nameservers:
addresses:
- 172.16.1.11
- 172.16.1.20
search:
- domain.com
set-name: qa
routes:
- to: 0.0.0.0/0
via: 172.21.1.1
table: 61
routing-policy:
- from: 172.21.2.114
table: 61
priority: 300
ens224:
addresses:
- 172.21.1.114/16
match:
macaddress: 00:50:56:aa:16:92
nameservers:
addresses:
- 172.16.1.11
- 172.16.1.20
search:
- domain.com
set-name: sviluppo
routes:
- to: 0.0.0.0/0
via: 172.21.1.1
table: 62
routing-policy:
- from: 172.21.1.114
table: 62
priority: 300
/etc/iproute2/rt_tables.d/swarm.conf:
# produzione
60 60
# qa
61 61
# sviluppo
62 62
Jede Hilfe wird sehr geschätzt.
Antwort1
Ich habe vergessen, für jede Schnittstelle eine Routing-Richtlinie anzugeben, um auf 0.0.0.0 zu gelangen:
Z.B:
routing-policy:
- from: 172.16.1.114
table: 60
- to: 0.0.0.0/0
table: 60
Hier ist die vollständige Konfiguration für meinen Fall:
network:
version: 2
ethernets:
ens160:
dhcp4: no
addresses:
- 172.16.1.114/16
match:
macaddress: 00:50:56:aa:00:1d
nameservers:
addresses:
- 172.16.1.11
- 172.16.1.20
search:
- domain.com
set-name: produzione
routes:
- to: 0.0.0.0/0
via: 172.16.1.1
table: 60
routing-policy:
- from: 172.16.1.114
table: 60
- to: 0.0.0.0/0
table: 60
ens192:
dhcp4: no
addresses:
- 172.21.2.114/16
match:
macaddress: 00:50:56:aa:6f:ed
nameservers:
addresses:
- 172.16.1.11
- 172.16.1.20
search:
- domain.com
set-name: qa
routes:
- to: 0.0.0.0/0
via: 172.21.1.1
table: 61
routing-policy:
- from: 172.21.2.114
table: 61
- to: 0.0.0.0/0
table: 61
ens224:
dhcp4: no
addresses:
- 172.21.1.114/16
match:
macaddress: 00:50:56:aa:16:92
nameservers:
addresses:
- 172.16.1.11
- 172.16.1.20
search:
- domain.com
set-name: sviluppo
routes:
- to: 0.0.0.0/0
via: 172.21.1.1
table: 62
routing-policy:
- from: 172.21.1.114
table: 62
- to: 0.0.0.0/0
table: 62