I'm starting to learn C # and try to develop an app which run on Ubuntu using Kestrel.
Now netstat command show next:
Proto Recv-Q Send-Q Local Address Foreign Address State
tcp 0 0 0.0.0.0:5000 0.0.0.0:* LISTEN
As far as I understand the server accepts requests from any foreign address, but I want it from only specific
I tried to google this question, but found only options for how to change the local address, not a foreign one
Please give advice