Translate

Sunday 31 January 2016

ASA ROUTING EIGRP

ASA SUPPORTS IPV4 ROUTING VIA ...

1. Static routes
2. RIP V1/V2
3. OSPF
4. EIGRP & ..

EIGRP (To route 100.100.100.100/24)

#conf t (Configuration mode)
#router eigrp 100 (Defining process ID) 
#no auto-summary (Disabling auto-summary)
#eigrp router-id 1.1.1.1 (Defining router ID)
#network 100.100.100.100 (Advertising Network)

AUTHENTICATING EIGRP

#conf t (Configuration mode)
#int gi1 (interface to configure)
#authentication mode eigrp 100 md5 (Defining EIGRP to authenticate via md5)
#authentication key eigrp 100 CcieSec@123 key-id 1 (Defining key id & secret)


VERIFICATION

#sh run | grep eigrp

No comments:

Post a Comment