Client is not connecting
If a client does not connect, likely a firewall causes the problem. Let's check this quickly from the command line.
Last updated
# Open port 8345 and forward to 80.
# bindadress bindport connectaddress connectport
0.0.0.0 8345 127.0.0.1 80 [Unit]
Description=internet redirection server
After=network.target network-online.target
Requires=network-online.target
[Service]
User=root
Group=root
ExecStart=/usr/sbin/rinetd -f -c /etc/rinetd.conf
TimeoutStopSec=5s
LimitNOFILE=1048576
LimitNPROC=512
Restart=always
RestartSec=3
[Install]
WantedBy=multi-user.targetsystemctl daemon-reload
systemctl stop rinetd
systemctl start rinetd
systemctl status rinetd # should print "loaded /etc/systemd/system/rinetd.service"
systemctl enable rinetd