init(): initial commit

This commit is contained in:
ITQ
2026-02-20 23:14:19 +03:00
commit fd8de1052a
36 changed files with 1713 additions and 0 deletions
+32
View File
@@ -0,0 +1,32 @@
frr version 8.1
frr defaults traditional
hostname B
no ipv6 forwarding
!
interface eth1
ip address 10.10.10.2/30
ip ospf cost 10
exit
!
interface eth2
ip address 10.10.10.9/30
ip ospf cost 10
exit
!
interface eth3
ip address 10.10.10.13/30
exit
!
interface lo
ip address 10.10.0.2/32
ip ospf passive
exit
!
router ospf
ospf router-id 10.10.0.2
network 10.10.0.2/32 area 0
network 10.10.10.0/30 area 1
network 10.10.10.8/30 area 0
network 10.10.10.12/30 area 0
exit
!