Om een programma te kunnen draaien (een connectie kan van buitenaf worden aangevraagd) , moet ik volgens de handleiding het volgende doen:
maar toch werkt hiet niet
wat doe ik fout? (als je de rest v/d firewall nodig hebt, dan post ik hem wel ff)
nou heb ik in mijn firewall de volgende regels opgenomen:* If your computer is behind a Proxy or Router (LAN users) use your NAT (Network Address Translation) service and do port mapping for TCP/UDP 9084. All UDP packets coming to port 9084 at your Proxy should be forwarded to your local PC in order to have a connection with the remote party.
* If your computer is behind a Firewall, ask your network administrator to open the ports TCP/UDP 9084 in/out to allow making Intranet-Internet connections.
code:
1
2
| $IPTABLES -t nat -A PREROUTING -p tcp --dport 9084 -i eth0 -j DNAT --to 192.168.0.20 $IPTABLES -t nat -A PREROUTING -p udp --dport 9084 -i eth0 -j DNAT --to 192.168.0.20 |
maar toch werkt hiet niet
wat doe ik fout? (als je de rest v/d firewall nodig hebt, dan post ik hem wel ff)