Working through the case study- The task for authentication says
"All areas must use hello authentication based on md5 with a secret of jnx. The backbone area must also authenticate LSPs using a simple password of jnx"
The solution for this shows this config on R5
level 2 {
authentication-key "$9$jEkmTOBEhrv"; # SECRET-DATA
authentication-type simple; # SECRET-DATA
There's also interface config
interface all {
level 1 disable;
level 2 {
hello-authentication-key "$9$5znCyrvMX-"; # SECRET-DATA
hello-authentication-type md5; # SECRET-DATAi configured r3 with only interface config and left out to Level2 simple auth and adjacency with R5 still shows up
interface t1-5/0/0.0 {
level 1 disable;
level 2 {
hello-authentication-key "$9$IuEhyKsYoaUH"; ## SECRET-DATA
hello-authentication-type md5; ## SECRET-DATA
}
}
..so what's the purpose on doing L2 simple auth at the global level and do md5 at the interface level. it seems to work just fine without the global l2 simple config