checking if iptables are set on a system in script
Clash Royale CLAN TAG#URR8PPP
up vote
0
down vote
favorite
I'm writing a script in bash and I need to check if iptables are set...I have this:
if [ `iptables-save | grep '^-' | wc -l` > 0 ]
then
echo "Iptables already set, skipping..........!"
else
Here the iptables get set
But it's not working as expected....
PROBLEM:
I did iptables-save
and it created this:
$iptables-save
# Generated by iptables-save v1.6.0 on Tue Oct 16 02:48:41 2018
*filter
:INPUT ACCEPT [2:266]
:FORWARD ACCEPT [0:0]
:OUTPUT ACCEPT [2:116]
COMMIT
# Completed on Tue Oct 16 02:48:41 2018
QUESTION:
Do you have a better/working way of checking if iptables
are set....my system is Debian 9
bash -version
GNU bash, version 4.4.12(1)-release (x86_64-pc-linux-gnu)
Copyright (C) 2016 Free Software Foundation, Inc.
License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>
bash shell-script iptables programming debian-stretch
add a comment |Â
up vote
0
down vote
favorite
I'm writing a script in bash and I need to check if iptables are set...I have this:
if [ `iptables-save | grep '^-' | wc -l` > 0 ]
then
echo "Iptables already set, skipping..........!"
else
Here the iptables get set
But it's not working as expected....
PROBLEM:
I did iptables-save
and it created this:
$iptables-save
# Generated by iptables-save v1.6.0 on Tue Oct 16 02:48:41 2018
*filter
:INPUT ACCEPT [2:266]
:FORWARD ACCEPT [0:0]
:OUTPUT ACCEPT [2:116]
COMMIT
# Completed on Tue Oct 16 02:48:41 2018
QUESTION:
Do you have a better/working way of checking if iptables
are set....my system is Debian 9
bash -version
GNU bash, version 4.4.12(1)-release (x86_64-pc-linux-gnu)
Copyright (C) 2016 Free Software Foundation, Inc.
License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>
bash shell-script iptables programming debian-stretch
add a comment |Â
up vote
0
down vote
favorite
up vote
0
down vote
favorite
I'm writing a script in bash and I need to check if iptables are set...I have this:
if [ `iptables-save | grep '^-' | wc -l` > 0 ]
then
echo "Iptables already set, skipping..........!"
else
Here the iptables get set
But it's not working as expected....
PROBLEM:
I did iptables-save
and it created this:
$iptables-save
# Generated by iptables-save v1.6.0 on Tue Oct 16 02:48:41 2018
*filter
:INPUT ACCEPT [2:266]
:FORWARD ACCEPT [0:0]
:OUTPUT ACCEPT [2:116]
COMMIT
# Completed on Tue Oct 16 02:48:41 2018
QUESTION:
Do you have a better/working way of checking if iptables
are set....my system is Debian 9
bash -version
GNU bash, version 4.4.12(1)-release (x86_64-pc-linux-gnu)
Copyright (C) 2016 Free Software Foundation, Inc.
License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>
bash shell-script iptables programming debian-stretch
I'm writing a script in bash and I need to check if iptables are set...I have this:
if [ `iptables-save | grep '^-' | wc -l` > 0 ]
then
echo "Iptables already set, skipping..........!"
else
Here the iptables get set
But it's not working as expected....
PROBLEM:
I did iptables-save
and it created this:
$iptables-save
# Generated by iptables-save v1.6.0 on Tue Oct 16 02:48:41 2018
*filter
:INPUT ACCEPT [2:266]
:FORWARD ACCEPT [0:0]
:OUTPUT ACCEPT [2:116]
COMMIT
# Completed on Tue Oct 16 02:48:41 2018
QUESTION:
Do you have a better/working way of checking if iptables
are set....my system is Debian 9
bash -version
GNU bash, version 4.4.12(1)-release (x86_64-pc-linux-gnu)
Copyright (C) 2016 Free Software Foundation, Inc.
License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>
bash shell-script iptables programming debian-stretch
bash shell-script iptables programming debian-stretch
edited 43 secs ago
asked 8 mins ago
somethingSomething
1,58993054
1,58993054
add a comment |Â
add a comment |Â
active
oldest
votes
active
oldest
votes
active
oldest
votes
active
oldest
votes
active
oldest
votes
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%2f475710%2fchecking-if-iptables-are-set-on-a-system-in-script%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