HPE Morpheus VM Essentials
1838661 Members
10612 Online
110128 Solutions
New Discussion

vlan question

 
Ted Laurent
Occasional Contributor

vlan question

I have a cluster that I've created a vlan on its nodes.   I've verified from the cli I can ping other cluster nodes on the vlan.   I can't figure out how to add the network pointing to those in the manager.   

Any ideas? 

Here is what the netplan looks like...

tlaurent@h2:~$ cd /etc/netplan
tlaurent@h2:/etc/netplan$ ls
01-base.yaml mvmbackup-20251013-112745 mvmbackup-20251016-102841
60-mvm-mgmt.yaml mvmbackup-20251016-081126
tlaurent@h2:/etc/netplan$ sudo cat 01-base.yaml
[sudo] password for tlaurent:
network:
ethernets:
eno1: {}
version: 2
vlans:
vlan2:
addresses:
- 10.0.2.12/24
id: 2
link: eno1

tlaurent@h2:/etc/netplan$ sudo cat 60-mvm-mgmt.yaml
network:
bridges:
mgmt:
addresses:
- 10.0.0.12/24
interfaces:
- eno1
nameservers:
addresses:
- 10.0.0.1
search:
- demo.int
openvswitch: {}
routes:
- to: default
via: 10.0.0.1
version: 2
tlaurent@h2:/etc/netplan$

 

tlaurent@h2:/etc/netplan$ ping 10.0.2.12
PING 10.0.2.12 (10.0.2.12) 56(84) bytes of data.
64 bytes from 10.0.2.12: icmp_seq=1 ttl=64 time=0.066 ms
64 bytes from 10.0.2.12: icmp_seq=2 ttl=64 time=0.062 ms
^C
--- 10.0.2.12 ping statistics ---
2 packets transmitted, 2 received, 0% packet loss, time 1002ms
rtt min/avg/max/mdev = 0.062/0.064/0.066/0.002 ms
tlaurent@h2:/etc/netplan$ ping 10.0.2.13
PING 10.0.2.13 (10.0.2.13) 56(84) bytes of data.
64 bytes from 10.0.2.13: icmp_seq=1 ttl=64 time=0.570 ms
64 bytes from 10.0.2.13: icmp_seq=2 ttl=64 time=0.315 ms
^C
--- 10.0.2.13 ping statistics ---
2 packets transmitted, 2 received, 0% packet loss, time 1009ms
rtt min/avg/max/mdev = 0.315/0.442/0.570/0.127 ms
tlaurent@h2:/etc/netplan$

Ted Laurent