Hi there
Currently I'm struggeling by adding a vlan to an bridge
The interface re2 is already part of bridge0
works well
172.16.232.1 is a switch I am logged in over SSH on it
Now I change the IP from the Switch to an IP from the Subnet of the Bridge0 ?
host is down
tcpdump -i bridge0 tells me nothing why or whats happend wrong
Could it be an problem that vlan0 is part of re2 and both re2 and vlan0 are both member of bridge0.
I would like to understand the issue
best regards Darko
Currently I'm struggeling by adding a vlan to an bridge
The interface re2 is already part of bridge0
Code:
ifconfig vlan0 create vlan 30 vlandev re2 up
ifconfig vlan0 inet 172.16.232.2/24 up
ping 172.16.232.1
PING 172.16.232.1 (172.16.232.1): 56 data bytes
64 bytes from 172.16.232.1: icmp_seq=0 ttl=64 time=16.668 ms
64 bytes from 172.16.232.1: icmp_seq=1 ttl=64 time=36.284 ms
64 bytes from 172.16.232.1: icmp_seq=2 ttl=64 time=11.570 ms
172.16.232.1 is a switch I am logged in over SSH on it
Now I change the IP from the Switch to an IP from the Subnet of the Bridge0 ?
Code:
ifconfig vlan0 destroy
ifconfig vlan0 create vlan 30 vlandev re2 up
ifconfig addm bridge0 vlan0
ping 10.0.1.254
ping: sendto: Host is down
ping: sendto: Host is down
ping: sendto: Host is down
ping: sendto: Host is down
host is down
tcpdump -i bridge0 tells me nothing why or whats happend wrong
Could it be an problem that vlan0 is part of re2 and both re2 and vlan0 are both member of bridge0.
I would like to understand the issue
best regards Darko