Add static IPv4 to storage.hq

This commit is contained in:
Emery Hemingway 2020-06-05 19:42:07 +02:00
부모 30b5584555
커밋 6ac2a2c6d4
1개의 변경된 파일14개의 추가작업 그리고 0개의 파일을 삭제

파일 보기

@ -55,6 +55,20 @@ name:
};
};
networking.interfaces.eth0 = {
ipv4 = {
addresses = [{
address = "172.22.99.20";
prefixLength = 24;
}];
routes = [{
address = "0.0.0.0";
prefixLength = 0;
via = "172.22.99.1";
}];
};
};
networking.firewall.enable = false;
};