Tagged Questions
-2
votes
0answers
10 views
Iptables allow Port: 123 - CentOS [closed]
How is it possible to allow the port 123 for incoming requests in my iptables file?
I'm using CentOs 5. I have already tried to edit the iptables file, but it always said some error.
Can anyone ...
-1
votes
1answer
24 views
Linux: forward incoming connections from subdomain to port? [closed]
I'm currently running two minecraft servers on the same computer, and would like two separate subdomains so people don't have to connect to one with domain.com:25566.
The solution I can see to this, ...
0
votes
0answers
28 views
Ubuntu port forwarding to tap interface
I would migrate my webserver into a Qemu-VM that works, but i can only access the server with its local ip. So i would to forward a port from my Static Internet IP to the VM. My setup:
TAP Interface ...
0
votes
1answer
60 views
Server Firewall preventing sending of email
The firewall on my VPS appears to be preventing my site from sending email. It was working fine until the end of last month. My hosting provider (Webfusion) has been next to useless.
I am able to ...
0
votes
0answers
270 views
Cannot connect to Webmin on Port 10000 [closed]
I'm quite a newbie with VPS-es but I've bought one, and I tried to install it. It has a CentOS 6.2 Distribution on it. I have tried to install webmin, it said it has succesfully installed, but when I ...
0
votes
1answer
628 views
Script to Block and Unblock a Port
root@node2:~# iptables --list
Chain INPUT (policy ACCEPT)
target prot opt source destination
DROP tcp -- anywhere anywhere multiport dports ...
1
vote
1answer
113 views
make a mysql connection over an alternate port
I'm trying to connect to an external mysql database, but port 3306 is already bound on the host hosting my minecraft server, I can change the port that the plugin attempts to connect to, but have no ...
3
votes
2answers
3k views
iptables redirect 80 to 8080 but block public 8080 access
I have some iptables rules which redirect requests for port 80 onto our application server (GlassFish) at port 8080 (and also SSL ports too but I've left them out for simplicity).
Whilst what we have ...
0
votes
0answers
469 views
How to redirect all outgoing traffic to specific port to different machine [closed]
In Linux, how do I redirect all outgoing traffic to ports 6667-7000 (any host) to specific address 10.1.1.2:6667
So that if I make "telnet any-host.com 6667" (from the same machine) the connection ...
0
votes
1answer
442 views
How does stealth port scan protection work?
#Port-scanner protection
iptables -A pfc -p tcp --tcp-flags SYN,ACK,FIN,RST RST -m limit --limit 2/s --limit-burst 4 -j RETURN
iptables -A pfc -p tcp --tcp-flags SYN,ACK,FIN,RST RST -j DROP
I ...
0
votes
0answers
72 views
need to my server's ip changes when it needs to connect port 'x' on ip 'y' [closed]
I have a linux server and have a proxy server on another machine.
My linux server needs connect to port 'x' on ip 'y'
Is it possible to create iptables rule or another way to: when my linux server ...
1
vote
1answer
315 views
Server has 2 IP addresses. How can I route 2 servers with 2 different ports to the 2 IPs on the same port
I want to route:
127.0.0.1:25565 <-> 40.39.210.1:25565
127.0.0.1:25564 <-> 40.39.210.40:25565
Note that the 2 internal IPs are the same, but the ports are different, and the 2 external ...
0
votes
0answers
787 views
can't open PORT on IPTABLES firewall
I'm struggling to understand why I can't open port 61616 by adding IPTABLES rule. Here is the listing of all rules, obtained via IPTABLES -L command.
Chain INPUT (policy ACCEPT)
target prot opt ...
0
votes
0answers
807 views
Ubuntu gateway port forwarding on two networks [closed]
I am trying to make a license server (w/ static IP) on network1 accessible for all clients in network2.
Setup:
I am using an ubuntu server as gateway between the two networks
network1: 11.49.X.X ...
0
votes
3answers
642 views
What is the best way to forward all requests on a certain port to another machine on the network?
I have two dedicated servers and no hardware firewall. I'd like to forward all requests that come into the primary server on port 1008 to be fulfilled by another dedicated server on the same network. ...