123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081 |
- fastd_instances:
- - name: test
- bind: any:10000 interface "eth0" default ipv4
- interface: tap00
- loglevel: info
- mode: tap
- method: salsa2012+umac
- peer_limit: 125
- mtu: 1280
- status_socket: /tmp/fastd00.sock
- on_up_script: |
- ip link set up $INTERFACE
- batctl if add $INTERFACE
- on_verify_script: |
- /etc/fastd/fastd-blacklist.sh $PEER_KEY
- fastd_instances_secret:
- - name: test
- secret: 280088c4263359417e9f2daf1771db820ab79eb4f79e3718719b2a976e8a8b5e
- bird_router_id: 10.233.8.1
- bird_templates:
- - header: bgp ibgp
- content: |
- local as 65403;
- import all;
- export all;
- next hop self;
- multihop 64;
- bird_protocols:
- - header: direct
- content: interface "*";
- - header: bgp ffrg11 from ibgp
- content: |
- source address 10.0.6.6;
- neighbor 10.0.6.5 as 65079;
- default bgp_med 2;
- bird6_router_id: 10.233.8.1
- bird6_templates:
- - header: bgp ibgp
- content: |
- source address 2a03:2260:50:5::8;
- local as 65403;
- import all;
- export all;
- next hop self;
- direct;
- gateway direct;
- bird6_protocols:
- - header: direct
- content: interface "*";
- - header: bgp node012 from ibgp
- content: |
- neighbor 2a03:2260:50:5::24 as 65403;
- default bgp_med 4;
- supernode_interfaces:
- - name: eth0
- auto: true
- proto: inet
- type: dhcp
-
- - name: meshdummy0
- auto: true
- proto: inet
- type: manual
- config:
- - key: pre-up
- value: ip link add $IFACE type dummy
- - key: pre-up
- value: ip link set address 02:ce:ef:ca:fe:2a dev $IFACE
- - key: pre-up
- value: ip link set up dev $IFACE
- - key: post-down
- value: ip link set down dev $IFACE
- - key: up
- value: batctl if add $IFACE
|