Tagged Questions
0
votes
1answer
28 views
iptables 4.12 IP not found: BASH function $line issue
While creating a simple script that grabs a blacklist of ip addresses and blocks them, I came across this issue:
## Function giving greif
function _droplist (){
while read line; do
$IPT ...
1
vote
2answers
236 views
Grep and print back reference
I have this iptable log:
Feb 25 10:32:48 XXX: [414645.555838] FW: DEN TCP IN=eth0 OUT= MAC=XYZ SRC=1.1.1.1 DST=2.2.2.2 LEN=40 TOS=0x00 PREC=0x00 TTL=57 ID=0 DF PROTO=TCP SPT=80 DPT=51814 WINDOW=0 ...
1
vote
7answers
316 views
Automate whitelisting ip addresses in iptables via bash
I am looking for the best way to automate whitelisting IP addresses into iptables. The list of ip addresses and ports comes from a JSON file /accept-rules.json which is formatted like:
[
{
...
1
vote
2answers
131 views
Using egrep to search for IP address by octets from a shell variable
I'm writing a BASH script that outputs iptables -L -n and searches for the existence of an IP address. I'm stuck with how to use this with egrep. Roughly:
CHECK=$(iptables -L -n | egrep ...
0
votes
1answer
120 views
Writing bash code for performance standards
Is there a better way to rewrite this code to get enhanced performance?
If you were to get a bunch of IPs the system seems to hang.
TMP_PREFIX='/tmp/synd'
TMP_FILE="mktemp $TMP_PREFIX.XXXXXXXX"
...
0
votes
0answers
284 views
IPTables adding new rule syntax [closed]
I have attempted to follow the instructions at:
http://d4forg.blogspot.co.uk/2012/01/detect-and-block-synfloods.html
which outlines two commands to run on the server:
iptables -I INPUT -p tcp -m ...
1
vote
1answer
526 views
iptables Bad argument `ACCEPT' in a Bash function
I am trying to create a bash function that will whitelist a IP on a remote VPS:
function whitelist-ip () { ssh vps-01 '/usr/bin/sudo /sbin/iptables -v -I INPUT 1 -s $1 -j ACCEPT'; }
...
1
vote
1answer
1k views
best way to check if a iptables userchain exist.
i am trying to programmatically create userchains and delete them in iptables. I was wondering what is the best way to check if a userchain exist and if it does not create it.
4
votes
2answers
9k views
Linux Bash: Setting iptables rules to allow both active and passive FTP
I have a PC on which I have a FTP server installed. I want to set the iptables rules to allow both active and passive FTP. I've tried the following code that people report is working, but it seems to ...
0
votes
2answers
266 views
Check if user chain is available in bash script
I have two bash scripts. In the first one a user chain will be created like
#!/bin/bash
iptables -X STATS
iptables -N STATS
iptables -I INPUT -j STATS
In another bash script I will insert the rules ...
4
votes
1answer
99 views
bash scripting: catching errors from a block of statements
I have a large iptables ruleset that I manage with my own bash script. Most of the commands in the script are simple, single-statment iptables commands. I am trying to improve the script by adding ...
0
votes
1answer
134 views
IP Tables script for reading logs
Need some help designing a bash script for grepping IP addresses from auth.log and apache.log that look dodgy so I can automatically add them to the IP logs.
Thinking of grepping both of these logs, ...
1
vote
2answers
179 views
add total bytes in iptables
how can I add grep output number line by line.
I have the below output file from
pkts bytes target prot opt in out source destination
0 0 RETURN ...