eigrp, problemi con i neighbor statici

CCNA, CCNP, CCSP, CCVP, CCIE e tutti gli altri percorsi di certificazione Cisco.

Moderatore: Federico.Lagni

Rispondi
Avatar utente
anubisg1
Cisco pathologically enlightened user
Messaggi: 218
Iscritto il: lun 18 ott , 2010 11:05 am
Località: Brno

salve ragazzi, ho iniziato da poco a studiare per la ccnp.

sto studiando da

CCNP ROUTER 642-902 Official Certification Guide, di Wendell Odom

parlando di eigrp si parla di neighbor statici.. ma ho un problema.

secondo il libro infatti:
Also note that the EIGRP configuration does not have to include a network command that matches the interface, EIGRP will still advertise about the subnet connected to the interface
questo, sembra non funzionare. Sembra che non sia l'unico ad avere questo problema:

http://networking-forum.com/viewtopic.php?t=21914

che sia un errata da segnalare?

senza il comando network, ecco cosa vedo nella config:

Codice: Seleziona tutto

!                                                                               
version 12.2                                                                    
service timestamps debug uptime                                                 
service timestamps log uptime                                                   
no service password-encryption                                                  
!                                                                               
hostname Router                                                                 
!                                                                               
!                                                                               
ip subnet-zero                                                                  
!                                                                               
!                                                                               
!                                                                               
!                                                                               
!                                                                               
!                                                                               
interface Ethernet0/0                                                           
 no ip address                                                                  
 shutdown                                                                       
 half-duplex                                                                    
!                                                                               
interface Serial0/0                                                             
 no ip address                                                                  
 encapsulation frame-relay                                                      
 frame-relay lmi-type cisco                                                     
!                                                                               
interface Serial0/0.1 point-to-point                                            
 ip address 192.168.1.2 255.255.255.252                                         
 frame-relay interface-dlci 321                                                 
!                                                                               
interface BRI0/0                                                                
 no ip address                                                                  
 encapsulation hdlc                                                             
 shutdown                                                                       
!                                                                               
ip classless                                                                    
ip http server                                                                  
!                                                                               
!                                                                               
line con 0                                                                      
line aux 0                                                                      
line vty 0 4                                                                    
!                                                                               
end   
praticamente NIENTE, per sicurezza, pensavo di non aver proprio digitato il comando neighbor o che avessi fatto qualcosa di errato.. invece:

Codice: Seleziona tutto

Router#show ip int brief                                                        
Interface                  IP-Address      OK? Method Status                Prol
Ethernet0/0                unassigned      YES unset  administratively down dow 
Serial0/0                  unassigned      YES unset  up                    up  
Serial0/0.1                192.168.1.2     YES manual up                    up  
BRI0/0                     unassigned      YES unset  administratively down dow 
BRI0/0:1                   unassigned      YES unset  administratively down dow 
BRI0/0:2                   unassigned      YES unset  administratively down dow 
Router#conf t                                                                   
Router(config)#router eigrp 9                                                           
Router(config-router)#neighbor 192.168.1.1 serial 0/0.1                         
EIGRP: Static nbr 192.168.1.1 already in AS 9 Serial0/0.1  
cosa molto strana.. nel momento poi che digito il comando network:

Codice: Seleziona tutto

Router(config-router)#network 192.168.1.0 0.0.0.3                                                          
Router(config-router)#no auto-summary
ecco che nella run config esce tutto:

Codice: Seleziona tutto

!                                                                               
router eigrp 9                                                                  
 network 192.168.1.0 0.0.0.3                                                    
 neighbor 192.168.1.1 Serial0/0.1                                               
 no auto-summary                                                                
!   
dopo aver attivato il comando network anche sul router dall'altro lato, l'adiacenza si forma:

Codice: Seleziona tutto

Router#show ip eigrp neighbors detail                                           
IP-EIGRP neighbors for process 9                                                
H   Address                 Interface       Hold Uptime   SRTT   RTO  Q  Seq    
                                            (sec)         (ms)       Cnt Num    
1   192.168.1.1             Se0/0.1           14 00:00:38    1  4500  0  4      
   Static neighbor                                                              
   Version 12.2/1.2, Retrans: 2, Retries: 0 

idee???
Cisco CCIE #46985 Immagine
CCNP R&S, CCNA Wireless and Security
Avatar utente
anubisg1
Cisco pathologically enlightened user
Messaggi: 218
Iscritto il: lun 18 ott , 2010 11:05 am
Località: Brno

mi rispondo da solo.. ho scaricato gli errata:
Page 44 – 3rd paragraph – last 2 lines – “…the EIGRP configuration does not have to include…” – starting with this phrase, replace the rest of the paragraph with “…the EIGRP configuration still needs a network command that matches the interface referenced by the neighbor command.”
Cisco CCIE #46985 Immagine
CCNP R&S, CCNA Wireless and Security
Gianremo.Smisek
Messianic Network master
Messaggi: 1159
Iscritto il: dom 11 mar , 2007 2:23 pm
Località: Termoli

yep, e' giusto. EIGRP ha cmq bisogno di sapere su quali interfacce attivare il processo. L'unico modo e' farlo con il comando network (best pratice di cisco e' abilitarlo su single interface: network 10.1.1.2 0.0.0.0)

ciao
Rispondi