Answer the question
In order to leave comments, you need to log in
How can I make it possible to get to my server using a white ip?
I have a problem. Today I bought a permanent white ip from an ISP. It seems that everything has changed and everything is fine. If I connect from the local network to the address AAA.BBB.CCC.DDD, then the router page (ZyXEL) appears. If I go to the same ip from a smartphone via 3G, then nothing opens for me. I created a test server in NodeJS.
var HTTP = new require("http");
var FS = new require('fs');
const HTML = FS.readFileSync('server.html', 'utf8');
HTTP.createServer(function (req, res) {
res.writeHead(200, {"Content-Type": "text/html"});
res.end(HTML);
}).listen(2000, "localhost", function () {console.log("Server started!")});
Answer the question
In order to leave comments, you need to log in
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question