-3
votes
0answers
20 views

Python ip forwarding [closed]

I have to develop a program in python that will run in a linux device. That device have to sniff all the input connection on eth0 and insert delay on the input stream forwarding it to eth1. Can you ...
-1
votes
0answers
42 views

creating an API with flask [closed]

Need help for completing this task. I am a beginner. Use django/flask application to create an API to accept POST requests and run it as a daemon. This daemon must be able to modify the iptable ...
0
votes
1answer
38 views

Undefined symbol “afinfo” when importing python-iptables package “iptc”

I am trying to utilize the python-iptables package to list iptables rules in a web app. When I add the iptc package to my environment, I get the below error. I used yum 'provides' to find where the ...
0
votes
0answers
77 views

duplicate log entries in Python UDP syslog server from iptables

I've implemented a basic remote syslog server in Python with the following code: self.UDPsock = socket.socket(socket.AF_INET, socket.SOCK_DGRAM) self.UDPsock.bind(self.addr) ...
0
votes
0answers
112 views

Python Scapy nfqueue

Im writing python code to interact with iptables nfqueue on linux systems. I am able to retrieve the queue packets and modify them as i wish however i am having trouble accepting them through the ...
0
votes
2answers
90 views

Unable to get a response from http POST

I'm attempting to use twilio to automatically make a few calls for me, but I'm having a bit of trouble getting it to work properly. I'm making phone calls using twilio like this: conn.calls.create( ...
1
vote
7answers
314 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: [ { ...
2
votes
1answer
106 views

python-iptables: Cryptic error when allowing incoming TCP traffic on port 1234

I wanted to write an iptables script in Python. Rather than calling iptables itself I wanted to use the python-iptables package. However I'm having a hard time getting some basic rules setup. I wanted ...
0
votes
1answer
156 views

How to use the Python UFW (Uncomplicated Firewall) API in Ubuntu?

I use UFW on Ubuntu 12.04 to allow and deny IP addresses to ports from the command line. How can I use the API to do the following in Python? $ sudo ufw status $ sudo ufw allow from 207.46.232.182 ...
5
votes
3answers
2k views

Python/iptables: Capturing all UDP packets and their original destination

I am trying to write an iptables rule that will redirect all outgoing UDP packets to a local socket, but I also need the destination information. I started out with sudo iptables -t nat -A ...
1
vote
1answer
208 views

is it possible sending data via NIC directly instead of via routing table lookup (linux command or python)

Suppose I have 3 NIC in one host PC, name them eth0, eth1 and eth2 All interface have it's own ip address in different subnet, however, all the gateway router of those NIC have route to one server I ...
0
votes
1answer
246 views

using python: how create firewall to block/drop network packets

Like the question stated... How to use python to block/drop packets from blacklisted host (MAC address) ... or more specific, ARP packets I know that *inux has utilities like "iptables" that can ...
9
votes
1answer
3k views

Is there a python interface to iptables?

Im trying to retrieve the current iptables chains configured on the system via python. If I strace the iptables command, it outputs: strace iptables -L INPUT socket(PF_INET, SOCK_RAW, IPPROTO_RAW) ...
0
votes
1answer
302 views

twisted.pair.ethernet vs iptables

I need to implement some low-level IP filtering/tracking. Typically I would use iptables for this, but since I am currently using twisted in a few projects I'd consider using it's ethernet library, ...
0
votes
0answers
116 views

My memcache is timing out. Does anyone know why?

I am using memcached and python-memcache. On my cache server, iptables is set perfectly, and it's allowed: ACCEPT all -- dev anywhere The process is this: ...
7
votes
2answers
4k views

Python port forwarding/multiplexing server

I would like to make server that listen on UDP port 162 (SNMP trap) and then forwards this traffic to multiple clients. Also important is that the source port & address stays same (address ...