18 lines
1.1 KiB
Text
18 lines
1.1 KiB
Text
# Fix 5+6: Rebuild OSPF with standard naming + add redistribute=connected
|
|
# Remove old OSPF config (templates first, then area, then instance)
|
|
/routing ospf interface-template remove numbers=*5
|
|
/routing ospf interface-template remove numbers=*4
|
|
/routing ospf area remove numbers=*1
|
|
/routing ospf instance remove numbers=*0
|
|
# Recreate with standard naming and redistribute
|
|
/routing ospf instance add name=default-v2 router-id=id-1 originate-default=never redistribute=connected in-filter-chain=ospf-in out-filter-chain=ospf-out version=2 vrf=main
|
|
/routing ospf area add name=backbone-v2 area-id=0.0.0.0 instance=default-v2 type=default
|
|
/routing ospf interface-template add area=backbone-v2 interfaces=ether2-climax cost=10 type=ptp use-bfd=no dead-interval=40s hello-interval=10s priority=1
|
|
/routing ospf interface-template add area=backbone-v2 passive type=broadcast cost=1
|
|
|
|
# Fix 9: Add idle timeout to PPPoE profile
|
|
/ppp profile set [find name="494"] idle-timeout=1h
|
|
|
|
# Fix 10: Increase RADIUS timeout from 300ms to 2s
|
|
/radius set [find address=204.110.191.248] timeout=2s
|
|
/radius set [find address=204.110.191.2] timeout=2s
|