iptables: what happen after a reboot?
Clash Royale CLAN TAG#URR8PPP
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;
Installing NCPA for nagios, I found these instructions
iptables -I INPUT -p tcp --destination-port 5693 -j ACCEPT
apt-get install -y iptables-persistent
Answer yes to saving existing rules
Of course, I cannot save ALL ruleset. Because I am using failban and actually my iptables ruleset is veeeery big.
I'd like to persist only
iptables -I INPUT -p tcp --destination-port 5693 -j ACCEPT
Is it possible?
Is still really needed to use iptables-persistent to keep firewall rules? I have a doubt because I am using port 80 and a few others without any problems after system reboots...
So, When I reboot the system, will normally iptables reset all rules?
If yes Why ? If no .. wel...
iptables iptables-persistent
add a comment |
Installing NCPA for nagios, I found these instructions
iptables -I INPUT -p tcp --destination-port 5693 -j ACCEPT
apt-get install -y iptables-persistent
Answer yes to saving existing rules
Of course, I cannot save ALL ruleset. Because I am using failban and actually my iptables ruleset is veeeery big.
I'd like to persist only
iptables -I INPUT -p tcp --destination-port 5693 -j ACCEPT
Is it possible?
Is still really needed to use iptables-persistent to keep firewall rules? I have a doubt because I am using port 80 and a few others without any problems after system reboots...
So, When I reboot the system, will normally iptables reset all rules?
If yes Why ? If no .. wel...
iptables iptables-persistent
Why is it a problem to have a lot of rules. What problem do you see when you try to persist so many?
– Philip Couling
Mar 15 at 12:35
Your question is right. Having fail2ban on a production and old server we have actually more than 12.000 banned ips. I prefer to recreate the ban list next reboot. But of course is not a technical problem
– realtebo
Mar 15 at 14:39
add a comment |
Installing NCPA for nagios, I found these instructions
iptables -I INPUT -p tcp --destination-port 5693 -j ACCEPT
apt-get install -y iptables-persistent
Answer yes to saving existing rules
Of course, I cannot save ALL ruleset. Because I am using failban and actually my iptables ruleset is veeeery big.
I'd like to persist only
iptables -I INPUT -p tcp --destination-port 5693 -j ACCEPT
Is it possible?
Is still really needed to use iptables-persistent to keep firewall rules? I have a doubt because I am using port 80 and a few others without any problems after system reboots...
So, When I reboot the system, will normally iptables reset all rules?
If yes Why ? If no .. wel...
iptables iptables-persistent
Installing NCPA for nagios, I found these instructions
iptables -I INPUT -p tcp --destination-port 5693 -j ACCEPT
apt-get install -y iptables-persistent
Answer yes to saving existing rules
Of course, I cannot save ALL ruleset. Because I am using failban and actually my iptables ruleset is veeeery big.
I'd like to persist only
iptables -I INPUT -p tcp --destination-port 5693 -j ACCEPT
Is it possible?
Is still really needed to use iptables-persistent to keep firewall rules? I have a doubt because I am using port 80 and a few others without any problems after system reboots...
So, When I reboot the system, will normally iptables reset all rules?
If yes Why ? If no .. wel...
iptables iptables-persistent
iptables iptables-persistent
asked Mar 15 at 12:09
realteborealtebo
1286
1286
Why is it a problem to have a lot of rules. What problem do you see when you try to persist so many?
– Philip Couling
Mar 15 at 12:35
Your question is right. Having fail2ban on a production and old server we have actually more than 12.000 banned ips. I prefer to recreate the ban list next reboot. But of course is not a technical problem
– realtebo
Mar 15 at 14:39
add a comment |
Why is it a problem to have a lot of rules. What problem do you see when you try to persist so many?
– Philip Couling
Mar 15 at 12:35
Your question is right. Having fail2ban on a production and old server we have actually more than 12.000 banned ips. I prefer to recreate the ban list next reboot. But of course is not a technical problem
– realtebo
Mar 15 at 14:39
Why is it a problem to have a lot of rules. What problem do you see when you try to persist so many?
– Philip Couling
Mar 15 at 12:35
Why is it a problem to have a lot of rules. What problem do you see when you try to persist so many?
– Philip Couling
Mar 15 at 12:35
Your question is right. Having fail2ban on a production and old server we have actually more than 12.000 banned ips. I prefer to recreate the ban list next reboot. But of course is not a technical problem
– realtebo
Mar 15 at 14:39
Your question is right. Having fail2ban on a production and old server we have actually more than 12.000 banned ips. I prefer to recreate the ban list next reboot. But of course is not a technical problem
– realtebo
Mar 15 at 14:39
add a comment |
1 Answer
1
active
oldest
votes
Your assumption about this behaviour is correct. Upon reboot, if rules are not made persistent, they are lost.
Here is discussed in details how to make rules persist: https://serverfault.com/questions/626521/centos-7-save-iptables-settings
Thanks. What if I install ufw? I noticed on a different vps that with ufw installed the rules ( of ufw not all the single lines ) were not lost
– realtebo
Mar 15 at 14:41
add a comment |
Your Answer
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "106"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
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%2f506491%2fiptables-what-happen-after-a-reboot%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
Your assumption about this behaviour is correct. Upon reboot, if rules are not made persistent, they are lost.
Here is discussed in details how to make rules persist: https://serverfault.com/questions/626521/centos-7-save-iptables-settings
Thanks. What if I install ufw? I noticed on a different vps that with ufw installed the rules ( of ufw not all the single lines ) were not lost
– realtebo
Mar 15 at 14:41
add a comment |
Your assumption about this behaviour is correct. Upon reboot, if rules are not made persistent, they are lost.
Here is discussed in details how to make rules persist: https://serverfault.com/questions/626521/centos-7-save-iptables-settings
Thanks. What if I install ufw? I noticed on a different vps that with ufw installed the rules ( of ufw not all the single lines ) were not lost
– realtebo
Mar 15 at 14:41
add a comment |
Your assumption about this behaviour is correct. Upon reboot, if rules are not made persistent, they are lost.
Here is discussed in details how to make rules persist: https://serverfault.com/questions/626521/centos-7-save-iptables-settings
Your assumption about this behaviour is correct. Upon reboot, if rules are not made persistent, they are lost.
Here is discussed in details how to make rules persist: https://serverfault.com/questions/626521/centos-7-save-iptables-settings
answered Mar 15 at 12:31
Nikolai Alexandrov GeorgievNikolai Alexandrov Georgiev
1313
1313
Thanks. What if I install ufw? I noticed on a different vps that with ufw installed the rules ( of ufw not all the single lines ) were not lost
– realtebo
Mar 15 at 14:41
add a comment |
Thanks. What if I install ufw? I noticed on a different vps that with ufw installed the rules ( of ufw not all the single lines ) were not lost
– realtebo
Mar 15 at 14:41
Thanks. What if I install ufw? I noticed on a different vps that with ufw installed the rules ( of ufw not all the single lines ) were not lost
– realtebo
Mar 15 at 14:41
Thanks. What if I install ufw? I noticed on a different vps that with ufw installed the rules ( of ufw not all the single lines ) were not lost
– realtebo
Mar 15 at 14:41
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.
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%2f506491%2fiptables-what-happen-after-a-reboot%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
Why is it a problem to have a lot of rules. What problem do you see when you try to persist so many?
– Philip Couling
Mar 15 at 12:35
Your question is right. Having fail2ban on a production and old server we have actually more than 12.000 banned ips. I prefer to recreate the ban list next reboot. But of course is not a technical problem
– realtebo
Mar 15 at 14:39