1 Pluspunkt 0 Minuspunkte
Wie kann ich auf einem Cisco Router 2 Interfaces im selben Subnetz haben so wie eine Bridge?
von  

1 Antwort

0 Pluspunkte 0 Minuspunkte

Du kannst eine Bridge-Group mit einem BVI (Bridged virtual interface) erstellen.

bridge irb
bridge 1 protocol ieee
bridge 1 route ip

int bvi1
 ip address 192.168.0.1 255.255.255.0
 no shut
 
int gi0/0
 bridge-group 1
 no shut
 
int gi0/1
 bridge-group 1
 no shut
von (716 Punkte)