Editing multiple iptables rules
Clash Royale CLAN TAG#URR8PPP
up vote
0
down vote
favorite
i am using iptables to allow certain IPs(users) to allow specific ports.
Like so -
ACCEPT tcp -- 1.2.3.4 anywhere tcp dpts:4358:4362
So for each IP address I have multiple ranges of ports allowed.
The thing is some of the users have dynamic IPs, and I have tried to get them signed up for dynamic dns service, but iptables is automatically resolving that domain to their current IP, so for now I am sticking with bare IPs.
The question is, how to update multiple rules IPs?
Something like find and replace in notpad )
linux debian iptables
add a comment |
up vote
0
down vote
favorite
i am using iptables to allow certain IPs(users) to allow specific ports.
Like so -
ACCEPT tcp -- 1.2.3.4 anywhere tcp dpts:4358:4362
So for each IP address I have multiple ranges of ports allowed.
The thing is some of the users have dynamic IPs, and I have tried to get them signed up for dynamic dns service, but iptables is automatically resolving that domain to their current IP, so for now I am sticking with bare IPs.
The question is, how to update multiple rules IPs?
Something like find and replace in notpad )
linux debian iptables
add a comment |
up vote
0
down vote
favorite
up vote
0
down vote
favorite
i am using iptables to allow certain IPs(users) to allow specific ports.
Like so -
ACCEPT tcp -- 1.2.3.4 anywhere tcp dpts:4358:4362
So for each IP address I have multiple ranges of ports allowed.
The thing is some of the users have dynamic IPs, and I have tried to get them signed up for dynamic dns service, but iptables is automatically resolving that domain to their current IP, so for now I am sticking with bare IPs.
The question is, how to update multiple rules IPs?
Something like find and replace in notpad )
linux debian iptables
i am using iptables to allow certain IPs(users) to allow specific ports.
Like so -
ACCEPT tcp -- 1.2.3.4 anywhere tcp dpts:4358:4362
So for each IP address I have multiple ranges of ports allowed.
The thing is some of the users have dynamic IPs, and I have tried to get them signed up for dynamic dns service, but iptables is automatically resolving that domain to their current IP, so for now I am sticking with bare IPs.
The question is, how to update multiple rules IPs?
Something like find and replace in notpad )
linux debian iptables
linux debian iptables
edited Dec 3 at 12:06
Rui F Ribeiro
38.5k1479128
38.5k1479128
asked Dec 3 at 12:02
Tomas Katlauskas
31
31
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
up vote
0
down vote
accepted
iptables
can only store IP addresses in the kernel tables, which is why it resolves the hostnames to the current IP addresses when run.
The only way to handle updates to IP adresses is to remove the old rules and add the new rules. I suggest adding these rules to a separate table, so that only the separate table needs to be cleared and reloaded. Something like:
Setup:
iptables -N DYNUSERS
iptables -A INPUT -j DYNUSERS
Building the DYNUSERS table:
iptables -F DYNUSERS
iptables -A DYNUSERS -s dyndns1.example.com -p tcp --dport 4358:4362 -j ACCEPT
iptables -A DYNUSERS -s dyndns2.example.com -p tcp --dport 4358:4362 -j ACCEPT
When the IP addresses change, simply run the last part again. Perhaps schedule this for every hour or so.
add a comment |
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
0
down vote
accepted
iptables
can only store IP addresses in the kernel tables, which is why it resolves the hostnames to the current IP addresses when run.
The only way to handle updates to IP adresses is to remove the old rules and add the new rules. I suggest adding these rules to a separate table, so that only the separate table needs to be cleared and reloaded. Something like:
Setup:
iptables -N DYNUSERS
iptables -A INPUT -j DYNUSERS
Building the DYNUSERS table:
iptables -F DYNUSERS
iptables -A DYNUSERS -s dyndns1.example.com -p tcp --dport 4358:4362 -j ACCEPT
iptables -A DYNUSERS -s dyndns2.example.com -p tcp --dport 4358:4362 -j ACCEPT
When the IP addresses change, simply run the last part again. Perhaps schedule this for every hour or so.
add a comment |
up vote
0
down vote
accepted
iptables
can only store IP addresses in the kernel tables, which is why it resolves the hostnames to the current IP addresses when run.
The only way to handle updates to IP adresses is to remove the old rules and add the new rules. I suggest adding these rules to a separate table, so that only the separate table needs to be cleared and reloaded. Something like:
Setup:
iptables -N DYNUSERS
iptables -A INPUT -j DYNUSERS
Building the DYNUSERS table:
iptables -F DYNUSERS
iptables -A DYNUSERS -s dyndns1.example.com -p tcp --dport 4358:4362 -j ACCEPT
iptables -A DYNUSERS -s dyndns2.example.com -p tcp --dport 4358:4362 -j ACCEPT
When the IP addresses change, simply run the last part again. Perhaps schedule this for every hour or so.
add a comment |
up vote
0
down vote
accepted
up vote
0
down vote
accepted
iptables
can only store IP addresses in the kernel tables, which is why it resolves the hostnames to the current IP addresses when run.
The only way to handle updates to IP adresses is to remove the old rules and add the new rules. I suggest adding these rules to a separate table, so that only the separate table needs to be cleared and reloaded. Something like:
Setup:
iptables -N DYNUSERS
iptables -A INPUT -j DYNUSERS
Building the DYNUSERS table:
iptables -F DYNUSERS
iptables -A DYNUSERS -s dyndns1.example.com -p tcp --dport 4358:4362 -j ACCEPT
iptables -A DYNUSERS -s dyndns2.example.com -p tcp --dport 4358:4362 -j ACCEPT
When the IP addresses change, simply run the last part again. Perhaps schedule this for every hour or so.
iptables
can only store IP addresses in the kernel tables, which is why it resolves the hostnames to the current IP addresses when run.
The only way to handle updates to IP adresses is to remove the old rules and add the new rules. I suggest adding these rules to a separate table, so that only the separate table needs to be cleared and reloaded. Something like:
Setup:
iptables -N DYNUSERS
iptables -A INPUT -j DYNUSERS
Building the DYNUSERS table:
iptables -F DYNUSERS
iptables -A DYNUSERS -s dyndns1.example.com -p tcp --dport 4358:4362 -j ACCEPT
iptables -A DYNUSERS -s dyndns2.example.com -p tcp --dport 4358:4362 -j ACCEPT
When the IP addresses change, simply run the last part again. Perhaps schedule this for every hour or so.
answered Dec 3 at 13:26
wurtel
9,76011325
9,76011325
add a comment |
add a comment |
Thanks for contributing an answer to Unix & Linux Stack Exchange!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
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
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2funix.stackexchange.com%2fquestions%2f485669%2fediting-multiple-iptables-rules%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
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
Required, but never shown
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
Required, but never shown
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
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown