Update from updated-inputs-2025-03-03-02-03
This commit is contained in:
commit
a89b7dba45
6
flake.lock
generated
6
flake.lock
generated
@ -542,11 +542,11 @@
|
|||||||
},
|
},
|
||||||
"nixpkgs_3": {
|
"nixpkgs_3": {
|
||||||
"locked": {
|
"locked": {
|
||||||
"lastModified": 1740695751,
|
"lastModified": 1740828860,
|
||||||
"narHash": "sha256-D+R+kFxy1KsheiIzkkx/6L63wEHBYX21OIwlFV8JvDs=",
|
"narHash": "sha256-cjbHI+zUzK5CPsQZqMhE3npTyYFt9tJ3+ohcfaOF/WM=",
|
||||||
"owner": "NixOS",
|
"owner": "NixOS",
|
||||||
"repo": "nixpkgs",
|
"repo": "nixpkgs",
|
||||||
"rev": "6313551cd05425cd5b3e63fe47dbc324eabb15e4",
|
"rev": "303bd8071377433a2d8f76e684ec773d70c5b642",
|
||||||
"type": "github"
|
"type": "github"
|
||||||
},
|
},
|
||||||
"original": {
|
"original": {
|
||||||
|
@ -179,8 +179,9 @@
|
|||||||
];
|
];
|
||||||
};
|
};
|
||||||
|
|
||||||
services.bird2.enable = true;
|
services.bird.enable = true;
|
||||||
services.bird2.config = ''
|
services.bird.package = pkgs.bird2;
|
||||||
|
services.bird.config = ''
|
||||||
router id ${ (lib.head config.networking.interfaces.ens18.ipv4.addresses).address };
|
router id ${ (lib.head config.networking.interfaces.ens18.ipv4.addresses).address };
|
||||||
|
|
||||||
ipv6 table ospf6;
|
ipv6 table ospf6;
|
||||||
|
@ -37,8 +37,9 @@
|
|||||||
];
|
];
|
||||||
};
|
};
|
||||||
|
|
||||||
services.bird2.enable = true;
|
services.bird.enable = true;
|
||||||
services.bird2.config = ''
|
services.bird.package = pkgs.bird2;
|
||||||
|
services.bird.config = ''
|
||||||
router id ${ (lib.head config.networking.interfaces.ens18.ipv4.addresses).address };
|
router id ${ (lib.head config.networking.interfaces.ens18.ipv4.addresses).address };
|
||||||
|
|
||||||
ipv6 table ospf6;
|
ipv6 table ospf6;
|
||||||
|
@ -37,8 +37,9 @@
|
|||||||
];
|
];
|
||||||
};
|
};
|
||||||
|
|
||||||
services.bird2.enable = true;
|
services.bird.enable = true;
|
||||||
services.bird2.config = ''
|
services.bird.package = pkgs.bird2;
|
||||||
|
services.bird.config = ''
|
||||||
router id ${ (lib.head config.networking.interfaces.ens20.ipv4.addresses).address };
|
router id ${ (lib.head config.networking.interfaces.ens20.ipv4.addresses).address };
|
||||||
|
|
||||||
ipv6 table ospf6;
|
ipv6 table ospf6;
|
||||||
|
@ -33,8 +33,9 @@
|
|||||||
iptables -A INPUT -p ospfigp -j ACCEPT
|
iptables -A INPUT -p ospfigp -j ACCEPT
|
||||||
'';
|
'';
|
||||||
|
|
||||||
services.bird2.enable = true;
|
services.bird.enable = true;
|
||||||
services.bird2.config = ''
|
services.bird.package = pkgs.bird2;
|
||||||
|
services.bird.config = ''
|
||||||
router id ${ (lib.head config.networking.interfaces.ens18.ipv4.addresses).address };
|
router id ${ (lib.head config.networking.interfaces.ens18.ipv4.addresses).address };
|
||||||
|
|
||||||
protocol direct {
|
protocol direct {
|
||||||
|
@ -1,11 +1,12 @@
|
|||||||
{ config, lib, ... }:
|
{ config, lib, pkgs, ... }:
|
||||||
|
|
||||||
{
|
{
|
||||||
networking.firewall.allowedTCPPorts = [ 179 ];
|
networking.firewall.allowedTCPPorts = [ 179 ];
|
||||||
|
|
||||||
# something doesn't work right
|
# something doesn't work right
|
||||||
services.bird2.enable = false;
|
services.bird.enable = false;
|
||||||
services.bird2.config = ''
|
services.bird.package = pkgs.bird2;
|
||||||
|
services.bird.config = ''
|
||||||
router id ${(lib.head config.networking.interfaces.ens18.ipv4.addresses).address};
|
router id ${(lib.head config.networking.interfaces.ens18.ipv4.addresses).address};
|
||||||
|
|
||||||
ipv6 table bgp6;
|
ipv6 table bgp6;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user