How to trick my local webserver into thinking my local generated traffic is coming from an external IP? [closed]Iptables and SNATiptables, blocking large numbers of IP AddressesForce local IP traffic to an external interfaceBastion Firewall Host ipTables Redirect QuestionPortforwarding with IPTABLES and Remote IP detectionOpenVPN Hairpin NatRoute sql server traffic through firewallDealing with refreshed IP addresses in DockerKVM/libvirt: NAT forwarding virtual bridge to host bridgeVMWare ESXi Guest with internet only access (router configuration preferred)
Point of the the Dothraki's attack in GoT S8E3?
CRT Oscilloscope - part of the plot is missing
What does a yield inside a yield do?
Why was the battle set up *outside* Winterfell?
What word means "to make something obsolete"?
Pressure inside an infinite ocean?
How can I support myself financially as a 17 year old with a loan?
Would glacier 'trees' be plausible?
Besides the up and down quark, what other quarks are present in daily matter around us?
Type-check an expression
What is the unit of the area when geometry attributes are calculated in QGIS?
Comment rendre "naysayers" ?
Number of seconds in 6 weeks
How did Arya get her dagger back from Sansa?
Why is C# in the D Major Scale?
What is the most remote airport from the center of the city it supposedly serves?
Selecting a secure PIN for building access
Manager is threatning to grade me poorly if I don't complete the project
Moving the subject of the sentence into a dangling participle
What is a "listed natural gas appliance"?
Why is `abs()` implemented differently?
For a benzene shown in a skeletal structure, what does a substituent to the center of the ring mean?
Why wasn't the Night King naked in S08E03?
Is induction neccessary for proving that every injective mapping of a finite set into itself is a mapping onto itself?
How to trick my local webserver into thinking my local generated traffic is coming from an external IP? [closed]
Iptables and SNATiptables, blocking large numbers of IP AddressesForce local IP traffic to an external interfaceBastion Firewall Host ipTables Redirect QuestionPortforwarding with IPTABLES and Remote IP detectionOpenVPN Hairpin NatRoute sql server traffic through firewallDealing with refreshed IP addresses in DockerKVM/libvirt: NAT forwarding virtual bridge to host bridgeVMWare ESXi Guest with internet only access (router configuration preferred)
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty height:90px;width:728px;box-sizing:border-box;
I am trying to generate some traffic towards an Apache web server for a forensic exercise.
The issue I am facing is that I need the server to think that the traffic is coming from various external IP addresses, so I can confuse the participants who will be analyzing the logs.
I heard from a colleague that this can be achieved using something like iptables, but I can't wrap my head around it right now.
Anyone had to deal with this in the past?
networking iptables
closed as off-topic by Sven♦ Apr 23 at 9:33
This question appears to be off-topic. The users who voted to close gave this specific reason:
- "Questions on Server Fault must be about managing information technology systems in a business environment. Home and end-user computing questions may be asked on Super User, and questions about development, testing and development tools may be asked on Stack Overflow." – Sven
add a comment |
I am trying to generate some traffic towards an Apache web server for a forensic exercise.
The issue I am facing is that I need the server to think that the traffic is coming from various external IP addresses, so I can confuse the participants who will be analyzing the logs.
I heard from a colleague that this can be achieved using something like iptables, but I can't wrap my head around it right now.
Anyone had to deal with this in the past?
networking iptables
closed as off-topic by Sven♦ Apr 23 at 9:33
This question appears to be off-topic. The users who voted to close gave this specific reason:
- "Questions on Server Fault must be about managing information technology systems in a business environment. Home and end-user computing questions may be asked on Super User, and questions about development, testing and development tools may be asked on Stack Overflow." – Sven
If you just want to generate Apache httpd log files: Temporarily add extra ip-addresses to the hostip addr add 192.168.2.22/32 dev eth0configure whatever tool you're using to make the requests to use those particular ip-addressescurl --interface 192.168.2.22 http://localhostand remove the addresses again.ip addr del 192.168.2.22/32 dev eth0
– HBruijn
Apr 23 at 9:43
add a comment |
I am trying to generate some traffic towards an Apache web server for a forensic exercise.
The issue I am facing is that I need the server to think that the traffic is coming from various external IP addresses, so I can confuse the participants who will be analyzing the logs.
I heard from a colleague that this can be achieved using something like iptables, but I can't wrap my head around it right now.
Anyone had to deal with this in the past?
networking iptables
I am trying to generate some traffic towards an Apache web server for a forensic exercise.
The issue I am facing is that I need the server to think that the traffic is coming from various external IP addresses, so I can confuse the participants who will be analyzing the logs.
I heard from a colleague that this can be achieved using something like iptables, but I can't wrap my head around it right now.
Anyone had to deal with this in the past?
networking iptables
networking iptables
asked Apr 23 at 9:08
msbirmsbir
1
1
closed as off-topic by Sven♦ Apr 23 at 9:33
This question appears to be off-topic. The users who voted to close gave this specific reason:
- "Questions on Server Fault must be about managing information technology systems in a business environment. Home and end-user computing questions may be asked on Super User, and questions about development, testing and development tools may be asked on Stack Overflow." – Sven
closed as off-topic by Sven♦ Apr 23 at 9:33
This question appears to be off-topic. The users who voted to close gave this specific reason:
- "Questions on Server Fault must be about managing information technology systems in a business environment. Home and end-user computing questions may be asked on Super User, and questions about development, testing and development tools may be asked on Stack Overflow." – Sven
If you just want to generate Apache httpd log files: Temporarily add extra ip-addresses to the hostip addr add 192.168.2.22/32 dev eth0configure whatever tool you're using to make the requests to use those particular ip-addressescurl --interface 192.168.2.22 http://localhostand remove the addresses again.ip addr del 192.168.2.22/32 dev eth0
– HBruijn
Apr 23 at 9:43
add a comment |
If you just want to generate Apache httpd log files: Temporarily add extra ip-addresses to the hostip addr add 192.168.2.22/32 dev eth0configure whatever tool you're using to make the requests to use those particular ip-addressescurl --interface 192.168.2.22 http://localhostand remove the addresses again.ip addr del 192.168.2.22/32 dev eth0
– HBruijn
Apr 23 at 9:43
If you just want to generate Apache httpd log files: Temporarily add extra ip-addresses to the host
ip addr add 192.168.2.22/32 dev eth0 configure whatever tool you're using to make the requests to use those particular ip-addresses curl --interface 192.168.2.22 http://localhost and remove the addresses again. ip addr del 192.168.2.22/32 dev eth0– HBruijn
Apr 23 at 9:43
If you just want to generate Apache httpd log files: Temporarily add extra ip-addresses to the host
ip addr add 192.168.2.22/32 dev eth0 configure whatever tool you're using to make the requests to use those particular ip-addresses curl --interface 192.168.2.22 http://localhost and remove the addresses again. ip addr del 192.168.2.22/32 dev eth0– HBruijn
Apr 23 at 9:43
add a comment |
0
active
oldest
votes
0
active
oldest
votes
0
active
oldest
votes
active
oldest
votes
active
oldest
votes
If you just want to generate Apache httpd log files: Temporarily add extra ip-addresses to the host
ip addr add 192.168.2.22/32 dev eth0configure whatever tool you're using to make the requests to use those particular ip-addressescurl --interface 192.168.2.22 http://localhostand remove the addresses again.ip addr del 192.168.2.22/32 dev eth0– HBruijn
Apr 23 at 9:43