mirror of
https://github.com/Nickiel12/nicks-nix-config.git
synced 2024-11-22 20:59:32 -08:00
reserved two IPs for Xfinity-is-dumb
This commit is contained in:
parent
c1d9023ce8
commit
3b1f6ca960
1 changed files with 10 additions and 8 deletions
|
@ -15,6 +15,16 @@
|
||||||
];
|
];
|
||||||
|
|
||||||
networking = {
|
networking = {
|
||||||
|
interfaces."enp2s0".ipv4.addresses = [
|
||||||
|
{
|
||||||
|
address = "10.0.0.184";
|
||||||
|
prefixLength = 24;
|
||||||
|
}
|
||||||
|
{
|
||||||
|
address = "10.0.0.183";
|
||||||
|
prefixLength = 24;
|
||||||
|
}
|
||||||
|
];
|
||||||
nat = {
|
nat = {
|
||||||
enable = true;
|
enable = true;
|
||||||
internalInterfaces = ["ve-+"];
|
internalInterfaces = ["ve-+"];
|
||||||
|
@ -23,14 +33,6 @@
|
||||||
|
|
||||||
# Lazy IPv6 connectivity for the container
|
# Lazy IPv6 connectivity for the container
|
||||||
enableIPv6 = true;
|
enableIPv6 = true;
|
||||||
|
|
||||||
#forwardPorts = [
|
|
||||||
#{
|
|
||||||
# sourcePort = 80;
|
|
||||||
# proto = "tcp";
|
|
||||||
# destination = "192.168.100.11:80";
|
|
||||||
#}
|
|
||||||
#];
|
|
||||||
};
|
};
|
||||||
firewall = {
|
firewall = {
|
||||||
enable = true;
|
enable = true;
|
||||||
|
|
Loading…
Reference in a new issue