Difference between revisions of "Netband Project - Multicast"
From Teknologisk videncenter
(New page: This page is part of the Netband Project) |
|||
| Line 1: | Line 1: | ||
This page is part of the [[Netband_Project|Netband Project]] | This page is part of the [[Netband_Project|Netband Project]] | ||
| + | |||
| + | ==Configuration== | ||
| + | *Switch | ||
| + | <pre>ip multicast-routing distributed | ||
| + | ! | ||
| + | interface FastEthernet0/24 | ||
| + | description HQrt1 | ||
| + | no switchport | ||
| + | ip address 10.255.255.1 255.255.255.252 | ||
| + | ip pim sparse-mode | ||
| + | ip ospf network point-to-point | ||
| + | ip ospf dead-interval minimal hello-multiplier 4 | ||
| + | ! | ||
| + | interface Vlan3 | ||
| + | ip address 10.1.1.1 255.255.255.0 | ||
| + | ip pim sparse-dense-mode | ||
| + | ! | ||
| + | ip pim rp-address 10.0.0.12 | ||
| + | </pre> | ||
| + | *Routers | ||
| + | <pre>ip multicast-routing | ||
| + | ! | ||
| + | interface Tunnel0 | ||
| + | ip address 10.255.254.1 255.255.255.252 | ||
| + | ip mtu 1300 | ||
| + | ip pim sparse-dense-mode | ||
| + | ip virtual-reassembly | ||
| + | tunnel source Loopback1 | ||
| + | tunnel destination 10.255.253.2 | ||
| + | ! | ||
| + | interface FastEthernet0/1 | ||
| + | description HQSW1 | ||
| + | ip address 10.255.255.2 255.255.255.252 | ||
| + | ip pim sparse-mode | ||
| + | ip nat inside | ||
| + | ip virtual-reassembly | ||
| + | ip ospf network point-to-point | ||
| + | ip ospf dead-interval minimal hello-multiplier 4 | ||
| + | duplex auto | ||
| + | speed auto | ||
| + | ! | ||
| + | </pre> | ||
Revision as of 08:58, 29 April 2009
This page is part of the Netband Project
Configuration
- Switch
ip multicast-routing distributed ! interface FastEthernet0/24 description HQrt1 no switchport ip address 10.255.255.1 255.255.255.252 ip pim sparse-mode ip ospf network point-to-point ip ospf dead-interval minimal hello-multiplier 4 ! interface Vlan3 ip address 10.1.1.1 255.255.255.0 ip pim sparse-dense-mode ! ip pim rp-address 10.0.0.12
- Routers
ip multicast-routing ! interface Tunnel0 ip address 10.255.254.1 255.255.255.252 ip mtu 1300 ip pim sparse-dense-mode ip virtual-reassembly tunnel source Loopback1 tunnel destination 10.255.253.2 ! interface FastEthernet0/1 description HQSW1 ip address 10.255.255.2 255.255.255.252 ip pim sparse-mode ip nat inside ip virtual-reassembly ip ospf network point-to-point ip ospf dead-interval minimal hello-multiplier 4 duplex auto speed auto !