How can I port forward? [closed]
Clash Royale CLAN TAG#URR8PPP
up vote
2
down vote
favorite
I want to port forward some ports but I'm having some trouble understanding how to do it since it asks for a trigger port and I can't find a trigger port for the application i want to run. I also looked at the virtual server option but I don't understand what it does since after applying the changes the selected ports were still closed.
My system is on a static IP, and is running Ubuntu 16.04.
port-forwarding
closed as off-topic by Sparhawk, Vlastimil, sourcejedi, Jesse_b, Gilles May 9 at 19:34
- This question does not appear to be about Unix or Linux within the scope defined in the help center.
add a comment |Â
up vote
2
down vote
favorite
I want to port forward some ports but I'm having some trouble understanding how to do it since it asks for a trigger port and I can't find a trigger port for the application i want to run. I also looked at the virtual server option but I don't understand what it does since after applying the changes the selected ports were still closed.
My system is on a static IP, and is running Ubuntu 16.04.
port-forwarding
closed as off-topic by Sparhawk, Vlastimil, sourcejedi, Jesse_b, Gilles May 9 at 19:34
- This question does not appear to be about Unix or Linux within the scope defined in the help center.
This is about configuring your router right? Which is presumably not running Unix/Linux?
â Sparhawk
May 9 at 4:50
I guess, can my computer be blocking what I'm trying to do? sorry for my lack of knowledge @Sparhawk
â paranormal brotivity
May 9 at 4:52
No worries. If it's about the router itself, it has nothing to do with Unix/Linux and is off-topic here. I'd try Superuser, perhaps.
â Sparhawk
May 9 at 7:05
4
I'm voting to close this question as off-topic because it is not about Unix/Linux.
â Sparhawk
May 9 at 7:05
add a comment |Â
up vote
2
down vote
favorite
up vote
2
down vote
favorite
I want to port forward some ports but I'm having some trouble understanding how to do it since it asks for a trigger port and I can't find a trigger port for the application i want to run. I also looked at the virtual server option but I don't understand what it does since after applying the changes the selected ports were still closed.
My system is on a static IP, and is running Ubuntu 16.04.
port-forwarding
I want to port forward some ports but I'm having some trouble understanding how to do it since it asks for a trigger port and I can't find a trigger port for the application i want to run. I also looked at the virtual server option but I don't understand what it does since after applying the changes the selected ports were still closed.
My system is on a static IP, and is running Ubuntu 16.04.
port-forwarding
edited May 9 at 5:12
Vlastimil
6,3011146116
6,3011146116
asked May 9 at 4:47
paranormal brotivity
162
162
closed as off-topic by Sparhawk, Vlastimil, sourcejedi, Jesse_b, Gilles May 9 at 19:34
- This question does not appear to be about Unix or Linux within the scope defined in the help center.
closed as off-topic by Sparhawk, Vlastimil, sourcejedi, Jesse_b, Gilles May 9 at 19:34
- This question does not appear to be about Unix or Linux within the scope defined in the help center.
This is about configuring your router right? Which is presumably not running Unix/Linux?
â Sparhawk
May 9 at 4:50
I guess, can my computer be blocking what I'm trying to do? sorry for my lack of knowledge @Sparhawk
â paranormal brotivity
May 9 at 4:52
No worries. If it's about the router itself, it has nothing to do with Unix/Linux and is off-topic here. I'd try Superuser, perhaps.
â Sparhawk
May 9 at 7:05
4
I'm voting to close this question as off-topic because it is not about Unix/Linux.
â Sparhawk
May 9 at 7:05
add a comment |Â
This is about configuring your router right? Which is presumably not running Unix/Linux?
â Sparhawk
May 9 at 4:50
I guess, can my computer be blocking what I'm trying to do? sorry for my lack of knowledge @Sparhawk
â paranormal brotivity
May 9 at 4:52
No worries. If it's about the router itself, it has nothing to do with Unix/Linux and is off-topic here. I'd try Superuser, perhaps.
â Sparhawk
May 9 at 7:05
4
I'm voting to close this question as off-topic because it is not about Unix/Linux.
â Sparhawk
May 9 at 7:05
This is about configuring your router right? Which is presumably not running Unix/Linux?
â Sparhawk
May 9 at 4:50
This is about configuring your router right? Which is presumably not running Unix/Linux?
â Sparhawk
May 9 at 4:50
I guess, can my computer be blocking what I'm trying to do? sorry for my lack of knowledge @Sparhawk
â paranormal brotivity
May 9 at 4:52
I guess, can my computer be blocking what I'm trying to do? sorry for my lack of knowledge @Sparhawk
â paranormal brotivity
May 9 at 4:52
No worries. If it's about the router itself, it has nothing to do with Unix/Linux and is off-topic here. I'd try Superuser, perhaps.
â Sparhawk
May 9 at 7:05
No worries. If it's about the router itself, it has nothing to do with Unix/Linux and is off-topic here. I'd try Superuser, perhaps.
â Sparhawk
May 9 at 7:05
4
4
I'm voting to close this question as off-topic because it is not about Unix/Linux.
â Sparhawk
May 9 at 7:05
I'm voting to close this question as off-topic because it is not about Unix/Linux.
â Sparhawk
May 9 at 7:05
add a comment |Â
1 Answer
1
active
oldest
votes
up vote
3
down vote
Apart from the port forwarding
in Virtual Servers section of your router, you need to:
Open the port(s) in your firewall, presumably
iptables
.The ports still remain closed if no application is configured and running on that port. Be sure to launch it.
An example
Suppose you want to open port for your SSH on non-standard port, say 57329, then you would do:
sudo iptables -A INPUT -p tcp -m tcp --dport 57329 -m comment --comment "SSH" -j ACCEPT
Possible culprit
You also don't mention in your question if your router has a public IP or not. If not, it won't ever work. Sometimes you need to pay your ISP for it, sometimes not. Please verify this and clarify in your question.
As for your claim:
My system is on a static IP, and is running Ubuntu 16.04.
Well, your computer might have static IP, but is it a public IP? I doubt so.
Based on your previous effort on a static IP, which I see here, I highly doubt you have a public IP on your router.
After a bit of reading I now understand the differences between internal/external ip addresses and the advantages of a static ip. So to answer your question, no I don't have a public static ip address. Im guessing it would be impossible for me to port forward right? btw thanks for putting up with my ignorance
â paranormal brotivity
May 9 at 6:01
1
@paranormalbrotivity Yes, it is impossible without public static IP. I am sorry. No need to apologize. We all need to learn.
â Vlastimil
May 9 at 6:05
@paranormalbrotivity Please mark the answer as solved, if it helped you clarify the issue.
â Vlastimil
May 9 at 6:48
add a comment |Â
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
3
down vote
Apart from the port forwarding
in Virtual Servers section of your router, you need to:
Open the port(s) in your firewall, presumably
iptables
.The ports still remain closed if no application is configured and running on that port. Be sure to launch it.
An example
Suppose you want to open port for your SSH on non-standard port, say 57329, then you would do:
sudo iptables -A INPUT -p tcp -m tcp --dport 57329 -m comment --comment "SSH" -j ACCEPT
Possible culprit
You also don't mention in your question if your router has a public IP or not. If not, it won't ever work. Sometimes you need to pay your ISP for it, sometimes not. Please verify this and clarify in your question.
As for your claim:
My system is on a static IP, and is running Ubuntu 16.04.
Well, your computer might have static IP, but is it a public IP? I doubt so.
Based on your previous effort on a static IP, which I see here, I highly doubt you have a public IP on your router.
After a bit of reading I now understand the differences between internal/external ip addresses and the advantages of a static ip. So to answer your question, no I don't have a public static ip address. Im guessing it would be impossible for me to port forward right? btw thanks for putting up with my ignorance
â paranormal brotivity
May 9 at 6:01
1
@paranormalbrotivity Yes, it is impossible without public static IP. I am sorry. No need to apologize. We all need to learn.
â Vlastimil
May 9 at 6:05
@paranormalbrotivity Please mark the answer as solved, if it helped you clarify the issue.
â Vlastimil
May 9 at 6:48
add a comment |Â
up vote
3
down vote
Apart from the port forwarding
in Virtual Servers section of your router, you need to:
Open the port(s) in your firewall, presumably
iptables
.The ports still remain closed if no application is configured and running on that port. Be sure to launch it.
An example
Suppose you want to open port for your SSH on non-standard port, say 57329, then you would do:
sudo iptables -A INPUT -p tcp -m tcp --dport 57329 -m comment --comment "SSH" -j ACCEPT
Possible culprit
You also don't mention in your question if your router has a public IP or not. If not, it won't ever work. Sometimes you need to pay your ISP for it, sometimes not. Please verify this and clarify in your question.
As for your claim:
My system is on a static IP, and is running Ubuntu 16.04.
Well, your computer might have static IP, but is it a public IP? I doubt so.
Based on your previous effort on a static IP, which I see here, I highly doubt you have a public IP on your router.
After a bit of reading I now understand the differences between internal/external ip addresses and the advantages of a static ip. So to answer your question, no I don't have a public static ip address. Im guessing it would be impossible for me to port forward right? btw thanks for putting up with my ignorance
â paranormal brotivity
May 9 at 6:01
1
@paranormalbrotivity Yes, it is impossible without public static IP. I am sorry. No need to apologize. We all need to learn.
â Vlastimil
May 9 at 6:05
@paranormalbrotivity Please mark the answer as solved, if it helped you clarify the issue.
â Vlastimil
May 9 at 6:48
add a comment |Â
up vote
3
down vote
up vote
3
down vote
Apart from the port forwarding
in Virtual Servers section of your router, you need to:
Open the port(s) in your firewall, presumably
iptables
.The ports still remain closed if no application is configured and running on that port. Be sure to launch it.
An example
Suppose you want to open port for your SSH on non-standard port, say 57329, then you would do:
sudo iptables -A INPUT -p tcp -m tcp --dport 57329 -m comment --comment "SSH" -j ACCEPT
Possible culprit
You also don't mention in your question if your router has a public IP or not. If not, it won't ever work. Sometimes you need to pay your ISP for it, sometimes not. Please verify this and clarify in your question.
As for your claim:
My system is on a static IP, and is running Ubuntu 16.04.
Well, your computer might have static IP, but is it a public IP? I doubt so.
Based on your previous effort on a static IP, which I see here, I highly doubt you have a public IP on your router.
Apart from the port forwarding
in Virtual Servers section of your router, you need to:
Open the port(s) in your firewall, presumably
iptables
.The ports still remain closed if no application is configured and running on that port. Be sure to launch it.
An example
Suppose you want to open port for your SSH on non-standard port, say 57329, then you would do:
sudo iptables -A INPUT -p tcp -m tcp --dport 57329 -m comment --comment "SSH" -j ACCEPT
Possible culprit
You also don't mention in your question if your router has a public IP or not. If not, it won't ever work. Sometimes you need to pay your ISP for it, sometimes not. Please verify this and clarify in your question.
As for your claim:
My system is on a static IP, and is running Ubuntu 16.04.
Well, your computer might have static IP, but is it a public IP? I doubt so.
Based on your previous effort on a static IP, which I see here, I highly doubt you have a public IP on your router.
edited May 9 at 5:52
answered May 9 at 5:06
Vlastimil
6,3011146116
6,3011146116
After a bit of reading I now understand the differences between internal/external ip addresses and the advantages of a static ip. So to answer your question, no I don't have a public static ip address. Im guessing it would be impossible for me to port forward right? btw thanks for putting up with my ignorance
â paranormal brotivity
May 9 at 6:01
1
@paranormalbrotivity Yes, it is impossible without public static IP. I am sorry. No need to apologize. We all need to learn.
â Vlastimil
May 9 at 6:05
@paranormalbrotivity Please mark the answer as solved, if it helped you clarify the issue.
â Vlastimil
May 9 at 6:48
add a comment |Â
After a bit of reading I now understand the differences between internal/external ip addresses and the advantages of a static ip. So to answer your question, no I don't have a public static ip address. Im guessing it would be impossible for me to port forward right? btw thanks for putting up with my ignorance
â paranormal brotivity
May 9 at 6:01
1
@paranormalbrotivity Yes, it is impossible without public static IP. I am sorry. No need to apologize. We all need to learn.
â Vlastimil
May 9 at 6:05
@paranormalbrotivity Please mark the answer as solved, if it helped you clarify the issue.
â Vlastimil
May 9 at 6:48
After a bit of reading I now understand the differences between internal/external ip addresses and the advantages of a static ip. So to answer your question, no I don't have a public static ip address. Im guessing it would be impossible for me to port forward right? btw thanks for putting up with my ignorance
â paranormal brotivity
May 9 at 6:01
After a bit of reading I now understand the differences between internal/external ip addresses and the advantages of a static ip. So to answer your question, no I don't have a public static ip address. Im guessing it would be impossible for me to port forward right? btw thanks for putting up with my ignorance
â paranormal brotivity
May 9 at 6:01
1
1
@paranormalbrotivity Yes, it is impossible without public static IP. I am sorry. No need to apologize. We all need to learn.
â Vlastimil
May 9 at 6:05
@paranormalbrotivity Yes, it is impossible without public static IP. I am sorry. No need to apologize. We all need to learn.
â Vlastimil
May 9 at 6:05
@paranormalbrotivity Please mark the answer as solved, if it helped you clarify the issue.
â Vlastimil
May 9 at 6:48
@paranormalbrotivity Please mark the answer as solved, if it helped you clarify the issue.
â Vlastimil
May 9 at 6:48
add a comment |Â
This is about configuring your router right? Which is presumably not running Unix/Linux?
â Sparhawk
May 9 at 4:50
I guess, can my computer be blocking what I'm trying to do? sorry for my lack of knowledge @Sparhawk
â paranormal brotivity
May 9 at 4:52
No worries. If it's about the router itself, it has nothing to do with Unix/Linux and is off-topic here. I'd try Superuser, perhaps.
â Sparhawk
May 9 at 7:05
4
I'm voting to close this question as off-topic because it is not about Unix/Linux.
â Sparhawk
May 9 at 7:05