It routes traffic from fox, apex and the compute nodes so that we can reach the git servers and tent. Reviewed-by: Aleix Boné <abonerib@bsc.es>
10 lines
160 B
Nix
10 lines
160 B
Nix
{ pkgs, ... }:
|
|
|
|
{
|
|
networking.hosts = {
|
|
# Remote hosts visible from compute nodes
|
|
"10.106.0.236" = [ "raccoon" ];
|
|
"10.0.44.4" = [ "tent" ];
|
|
};
|
|
}
|