Hello,
I am using Nocat Auth and have a new problem with iptables firewall:
My wireless network is 192.168.1.0/24. I have a new wireless webcamera so I
already got it as 192.168.1.110 and I can see the video streaming from Nocat
gateway. My problem is: what should I add to gateway/bin/initialize.fw in
order to have my webcam visible from outside?. I already checked lots of
iptables rules but without success. I want to have my external IP with,
let's say port 8088 to be redirected to 192.168.1.110:80. I don't have any
other iptables firewall, only the Nocat one. The gateway has a static IP on
eth0, local wireless is on eth1 (192.168.1.251) connected through Linksys
WRT54g (192.168.1.1, works as a router). I am using nocat gateway and server
on the same machine.
###### gateway.conf -- NoCatAuth Gateway Configuration.
GatewayMode Passive
TrustedGroups Any
AuthServiceAddr wireless.mymashine.com
ExternalDevice eth0
InternalDevice eth1
LocalNetwork 192.168.1.0/24
AllowedWebHosts wireless.mymashine.com
# RouteOnly 1
# IgnoreMAC 1
MembersOnly 1
IncludePorts 22 80
###### authserv.conf -- NoCatAuth Authentication Service Configuration.
HomePage
http://www.mymashine.com/
DataSource DBI
LocalGateway 192.168.1.251
###### dhcpd.conf
ddns-update-style none;
authoritative;
subnet 192.168.1.0 netmask 255.255.255.0 {
range 192.168.1.120 192.168.1.199;
default-lease-time 1800;
option domain-name "mymashine.com";
option domain-name-servers xxx.xxx.xxx.xxx, xxx.xxx.xxx.xxx;
option routers 192.168.1.251;
option subnet-mask 255.255.255.0;
option broadcast-address 192.168.1.255;
}
Thanks for any advices.
Best Regards,
Paul