Agenda: dns-anycast-notes.txt

File dns-anycast-notes.txt, 1.1 KB (added by trac, 5 years ago)
Line 
1Setup a Cisco 7200 using dynamips, attached to br-lan.
2
3Notes about load balancing:
4
5* We enable per-packet load sharing (not optimal on a real network)
6- http://blog.ipspace.net/2006/12/per-destination-or-per-packet-cef-load.html
7- Check out ip cef load-sharing algorithm <?>
8
9* maximum-paths enables ECMP
10
11
12See the lab for the router configuration
13
14Sample config below:
15
16- - - - - - - - - - -
17hostname rtr1
18no ip domain lookup
19aaa new-model
20enable secret 5 $1$p4/E$PnPk6VaF8QoZMhJx56oXs.
21username cisco password 0 cisco
22!
23interface FastEthernet0/0
24 ip address 10.10.0.222 255.255.0.0
25 ip access-group 100 out
26 ip load-sharing per-packet
27 no ip redirects
28 ip ospf 100 area 0
29 speed auto
30 duplex auto
31!
32router ospf 100
33 redistribute connected subnets
34 passive-interface default
35 no passive-interface FastEthernet0/0
36 maximum-paths 16
37!
38ip forward-protocol nd
39!
40no ip http server
41no ip http secure-server
42ip route 0.0.0.0 0.0.0.0 10.10.0.254
43!
44control-plane
45!
46line con 0
47 exec-timeout 0 0
48 stopbits 1
49line aux 0
50 exec-timeout 0 0
51 stopbits 1
52line vty 0 4
53 exec-timeout 0 0
54!
55!
56end
57- - - - - - - - - - -