This is an old revision of the document!
Cisco : Redistribution route
Redistribusi rute adalah proses berbagi rute yang dipelajari dari satu protokol routing ke protokol routing lainnya. Ini penting untuk menciptakan jaringan yang terpadu di mana beberapa protokol routing dapat bekerja bersama.
Syntax
Some acction
| Command | Description |
|---|---|
S1(config)#vlan [vlan-ID] | Membuat VLAN baru dan menetapkan nomor VLAN |
S1(config-vlan)#name [name] | Memberikan nama pada VLAN |
Contoh:
vlan 10 name VLAN-10 vlan 20 name VLAN-20 vlan 99 name VLAN-Management
Topologi
Gambar topology Goals Topology
Konfigurasi
- Step 1 : Pembuatan VLANs
Switch(config)#vlan 10 Switch(config-vlan)#name BIRU Switch(config-vlan)#exit Switch(config)#vlan 20 Switch(config-vlan)#name MAGENTA Switch(config-vlan)#exit
- Step 2 : Assign VLANs ke Ports
Switch(config)#interface f0/1 Switch(config-if)#switchport mode access Switch(config-if)#switchport access vlan 10 Switch(config-if)#exit Switch(config)#interface f0/2 Switch(config-if)#switchport mode access Switch(config-if)#switchport access vlan 10 Switch(config-if)#exit