COMPUTER TIPS

Home | Previous Page| About Us | Set As Home Page

 

Google

  Google Groups Beta Subscribe to Computer free Tips                                                  

Email:

Oct, 31 , 07                    Today's Tip                                        Add to Favorites   

                                                                              

     

 

Previous Tips e

30-10-07
29-10-07
28-10-07
27-10-07
26-10-07
25-10-07
24-10-07
23-10-07
22-10-07
21-10-07
20-10-07
19-10-07
18-10-07
17-10-07
16-10-07
15-10-07
14-10-07
13-10-07
12-10-07
11-10-07
10-10-07
09-10-07
08-10-07
07-10-07
06-10-07
05-10-07
04-10-07
03-10-07
02-10-07
01-10-07
30-09-07
29-09-07
28-09-07
27-09-07
26-09-07
25-09-07
24-09-07
23-09-07
22-09-07
21-09-07
20-09-07
19-09-07
18-09-07
17-09-07
16-09-07
15-09-07
14-09-07
13-09-07
12-09-07
11-09-07
10-09-07
09-09-07
08-09-07
07-09-07
06-09-07
05-09-07
04-09-07
03-09-07
02-09-07
01-09-07
30-08-07
29-08-07
28-08-07
27-08-07
26-08-07
25-08-07
24-08-07
23-08-07
22-08-07
21-08-07
20-08-07
19-08-07
18-08-07
17-08-07
16-08-07
15-08-07
14-08-07
13-08-07
12-08-07
11-08-07
10-08-07
09-08-07
08-08-07
07-08-07
06-08-07
05-08-07
04-08-07
03-08-07
02-08-07
01-08-07
30-07-07
29-07-07
28-07-07
27-07-07
26-07-07
25-07-07
24-07-07
23-07-07
22-07-07
21-07-07
20-07-07
19-07-07
18-07-07
17-07-07
16-07-07
15-07-07
14-07-07
13-07-07
12-07-07
11-07-07
10-07-07
09-07-07
08-07-07
07-07-07
06-07-07
05-07-07
04-07-07
03-07-07
02-07-07
01-07-07
01-05-07

June 07- Tips

May 07- Tips

April 07- Tips

March, 07- Tips

February, 07- Tips

January, 07- Tips

 

 

 

 

 

 

How to configure EIGRP authentication to prevent unauthorized access?

 * EIGRP (Extended Interior Gateway Routing Protocol)

Configuration to Enable EIGRP on Router A

In global configuration Mode:

A (config# router eigrp 10

(Enable EIGRP protocol and 10 is Autonomous number).

A (config-router)# network 30.0.0.0 

(Advertised router A Serial Network 30.0.0.0).

A (config-router)# network 10.0.0.0 

(Advertised router A Ethernet Network 10.0.0.0).

Configuration to Enable EIGRP on Router B

In global configuration Mode:

B (config) # router eigrp 10 

(Enable EIGRP protocol and 10 is Autonomous number)

B (config-router) # network 30.0.0.0 

(Advertised router B Serial Network 30.0.0.0).

B (config-router) # network 15.0.0.0

(Advertised router B Ethernet Network 15.0.0.0).

Now Configure EIGRP Authentication on Router A

In global configuration Mode: 

First create the key chain with the name cisco used in this example. 

A (config) # key chain cisco 

Now set the key number 1 used in this example. 

A (config-keychain) # key 1 

Now set the key string for the key name champion used in this example.

A (config-keychain-key) # key-string champion

A (config-keychain-key) # end

Now specify the interface that you want to configure EIGRP message authentication.

A (config) # interface serial 0

A (config-if) # ip authentication key-chain eigrp 1 cisco

A (config-if) # ip authentication mode eigrp 1 md 5

A (config-if) # end 

Now Configure EIGRP Authentication on Router B

n global configuration Mode: 

First create the key chain with the name cisco used in this example. 

B (config) # key chain cisco

Now set the key number 1 used in this example.

B (config-keychain) # key 1

Now set the key string for the key name champion used in this example.

B (config-keychain-key) # key-string champion 

B (config-keychain-key) # end 

Now specify the interface that you want to configure EIGRP message authentication.

B (config) # interface serial 0

B (config-if) # ip authentication key-chain eigrp 1 cisco

B (config-if) # ip authentication mode eigrp 1 md 5

B (config-if) # end

 

Yesterday Tip.

How to prevent users from writing to USB drives?