How to enable presistent proxy_arp
Clash Royale CLAN TAG#URR8PPP
up vote
0
down vote
favorite
I'm having trouble finding a way to make the following command persistent on my debian router
echo 1 > /proc/sys/net/ipv4/conf/all/proxy_arp
I did find that I can do it for ip forwarding in the File: /etc/sysctl.conf
I would just need to uncomment ipv4.ip_forward=1
but I'm not sure how to do it for proxy_arp
would it just be ipv4.proxy_arp=1
?
networking proxy
add a comment |Â
up vote
0
down vote
favorite
I'm having trouble finding a way to make the following command persistent on my debian router
echo 1 > /proc/sys/net/ipv4/conf/all/proxy_arp
I did find that I can do it for ip forwarding in the File: /etc/sysctl.conf
I would just need to uncomment ipv4.ip_forward=1
but I'm not sure how to do it for proxy_arp
would it just be ipv4.proxy_arp=1
?
networking proxy
add a comment |Â
up vote
0
down vote
favorite
up vote
0
down vote
favorite
I'm having trouble finding a way to make the following command persistent on my debian router
echo 1 > /proc/sys/net/ipv4/conf/all/proxy_arp
I did find that I can do it for ip forwarding in the File: /etc/sysctl.conf
I would just need to uncomment ipv4.ip_forward=1
but I'm not sure how to do it for proxy_arp
would it just be ipv4.proxy_arp=1
?
networking proxy
I'm having trouble finding a way to make the following command persistent on my debian router
echo 1 > /proc/sys/net/ipv4/conf/all/proxy_arp
I did find that I can do it for ip forwarding in the File: /etc/sysctl.conf
I would just need to uncomment ipv4.ip_forward=1
but I'm not sure how to do it for proxy_arp
would it just be ipv4.proxy_arp=1
?
networking proxy
asked Dec 6 '17 at 3:32
Katz
2732525
2732525
add a comment |Â
add a comment |Â
1 Answer
1
active
oldest
votes
up vote
1
down vote
accepted
You can do it two different ways.
First, you can target a specific interface (enp3so in this case):
# The next line enables proxy arp for IPv4 on the main Ethernet port only
net.ipv4.conf.enp3s0.proxy_arp = 1
The other way is more generic and will apply to all interfaces:
# Apply proxy arp for anyone
net.ipv4.conf.all.proxy_arp = 1
Then sudo sysctl -p and you are good
add a comment |Â
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
1
down vote
accepted
You can do it two different ways.
First, you can target a specific interface (enp3so in this case):
# The next line enables proxy arp for IPv4 on the main Ethernet port only
net.ipv4.conf.enp3s0.proxy_arp = 1
The other way is more generic and will apply to all interfaces:
# Apply proxy arp for anyone
net.ipv4.conf.all.proxy_arp = 1
Then sudo sysctl -p and you are good
add a comment |Â
up vote
1
down vote
accepted
You can do it two different ways.
First, you can target a specific interface (enp3so in this case):
# The next line enables proxy arp for IPv4 on the main Ethernet port only
net.ipv4.conf.enp3s0.proxy_arp = 1
The other way is more generic and will apply to all interfaces:
# Apply proxy arp for anyone
net.ipv4.conf.all.proxy_arp = 1
Then sudo sysctl -p and you are good
add a comment |Â
up vote
1
down vote
accepted
up vote
1
down vote
accepted
You can do it two different ways.
First, you can target a specific interface (enp3so in this case):
# The next line enables proxy arp for IPv4 on the main Ethernet port only
net.ipv4.conf.enp3s0.proxy_arp = 1
The other way is more generic and will apply to all interfaces:
# Apply proxy arp for anyone
net.ipv4.conf.all.proxy_arp = 1
Then sudo sysctl -p and you are good
You can do it two different ways.
First, you can target a specific interface (enp3so in this case):
# The next line enables proxy arp for IPv4 on the main Ethernet port only
net.ipv4.conf.enp3s0.proxy_arp = 1
The other way is more generic and will apply to all interfaces:
# Apply proxy arp for anyone
net.ipv4.conf.all.proxy_arp = 1
Then sudo sysctl -p and you are good
answered Mar 14 at 15:39
macNCheeseB
261
261
add a comment |Â
add a comment |Â
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2funix.stackexchange.com%2fquestions%2f409090%2fhow-to-enable-presistent-proxy-arp%23new-answer', 'question_page');
);
Post as a guest
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password