Difference between revisions of "Agile testbed"
From PDP/Grid Wiki
Jump to navigationJump to search (Remove link to update plan) |
(Update example network interfaces config) |
||
Line 255: | Line 255: | ||
! ACL | ! ACL | ||
|- | |- | ||
− | | | + | | 82 |
| [[NDPF_System_Functions#P4CTB|P4CTB]] | | [[NDPF_System_Functions#P4CTB|P4CTB]] | ||
| 194.171.96.16/28 | | 194.171.96.16/28 | ||
| 194.171.96.30 | | 194.171.96.30 | ||
− | | | + | | br82 |
| No inbound traffic on privileged ports | | No inbound traffic on privileged ports | ||
|- | |- | ||
− | | | + | | 88 |
| [[NDPF_System_Functions#Nordic (Open_Experimental)|Open/Experimental]] | | [[NDPF_System_Functions#Nordic (Open_Experimental)|Open/Experimental]] | ||
| 194.171.96.32/27 | | 194.171.96.32/27 | ||
| 194.171.96.62 | | 194.171.96.62 | ||
− | | | + | | br88 |
| Open | | Open | ||
|- | |- | ||
− | | | + | | 97 (untagged) |
| local | | local | ||
| 10.198.0.0/16 | | 10.198.0.0/16 | ||
Line 276: | Line 276: | ||
| testbed only | | testbed only | ||
|- style="color: #999;" | |- style="color: #999;" | ||
− | | | + | | 84 |
| [[NDPF System Functions#MNGT/IPMI|IPMI and management]] | | [[NDPF System Functions#MNGT/IPMI|IPMI and management]] | ||
| 172.20.0.0/16 | | 172.20.0.0/16 | ||
Line 288: | Line 288: | ||
# The primary network interface | # The primary network interface | ||
− | auto | + | auto eth0 |
− | iface | + | iface eth0 inet manual |
+ | up ip link set $IFACE mtu 9000 | ||
auto br0 | auto br0 | ||
iface br0 inet dhcp | iface br0 inet dhcp | ||
− | bridge_ports | + | bridge_ports eth0 |
− | auto | + | auto eth0.82 |
− | iface | + | iface eth0.82 inet manual |
− | vlan_raw_device | + | up ip link set $IFACE mtu 9000 |
+ | vlan_raw_device eth0 | ||
auto br2 | auto br2 | ||
iface br2 inet manual | iface br2 inet manual | ||
− | + | bridge_ports eth0.82 | |
− | auto | + | auto eth0.88 |
− | iface | + | iface eth0.88 inet manual |
− | vlan_raw_device | + | vlan_raw_device eth0 |
+ | |||
+ | auto br8 | ||
+ | iface br8 inet manual | ||
+ | bridge_ports eth0.88 | ||
+ | |||
+ | auto vlan100 | ||
+ | iface vlan100 inet manual | ||
+ | up ip link set $IFACE mtu 1500 | ||
+ | vlan_raw_device eth0.82 | ||
auto br2_100 | auto br2_100 | ||
iface br2_100 inet manual | iface br2_100 inet manual | ||
− | bridge_ports | + | bridge_ports vlan100 |
− | In this example VLAN | + | In this example VLAN 82 is configured on the first bridge, br0, and this interface is used in a second bridge, br2; the nested VLAN 82.100 is configured on this brigde, and finally a bridge 2_100 is made. So VMs that are added to this bridge will only receive traffic coming from VLAN 100 nested inside VLAN 2. |