A
A
Alexander Buki2018-12-05 12:32:56
network hardware
Alexander Buki, 2018-12-05 12:32:56

How to set up a local server and dd-wrt router to make external post requests?

I already asked this question yesterday. But the problem was that I had a "gray ip".
Enabled static ip service.
But still I can't make a request to my server from outside.

Server on node js.

const express = require('express');
const app = express();

const port = 3000;

app.listen(port, ()=>{
    console.log('we are live on port '+port)
});

app.post('/',(req, res)=>{
    res.send('hello');
})


forwarded ports on the router.
5c079a984a84d799612417.jpeg

Perhaps it has something to do with the fact that I am making a request from the same device where the server is deployed

Answer the question

In order to leave comments, you need to log in

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question