Questions tagged [port]
The port tag has no summary.
234 questions
0
votes
0
answers
16
views
Run RPCBind on a docker container with the socket enabled (for port 111)
I'm trying to dockerize a rpc application I made using C lang and rpcgen, I have the byte executable and everything, I tried a lot of docker os image like ubuntu 22.04/ debian and so on, the ...
0
votes
0
answers
28
views
Practical way to define named ports (automatically resolved version of `/etc/services`)?
Named ports can be defined in /etc/services but none of curl, http.Get() (Go) or reqwest::get() (Rust) respects the definition.
While it is possible to manually lookup the integer port number by the ...
0
votes
0
answers
82
views
How to re-enable a USB port after disabling it in sysfs?
I have disabled a USB (2.0) port on a production Linux system with this command:
echo 1 > /sys/bus/usb/devices/usb2/2-1/2-1.8/port/disable
It successfully disabled the 8th USB port on hub #1.
...
0
votes
0
answers
18
views
In Linux, is there a way to block all listening points at 0.0.0.0/[::] outside a VRF and have "net.ipv4.tcp_l3mdev_accept" enabled at same time?
In Linux, if I enable net.ipv4.tcp_l3mdev_accept with sysctl utility, I can reach all TCP ports listening at 0.0.0.0/[::] if there is a reachable IP inside a VRF. The listening point can belong to a ...
0
votes
0
answers
67
views
Unknown TCP in the nethogs output w/ data
I've seen this has an answer while there is no data being transmitted, but what about for when it is? Is this something I need to look into or am I fine? This was taken off my Nethogs
0
votes
1
answer
80
views
Netstat -an command output TCP [::]:135 [::]:0 LISTENING
In my InfoSec course assignment, we were given the task to analyze the different communications that were displayed when we run the command netstat -an. While analyzing I saw the following ...
2
votes
2
answers
240
views
Does Linux have a system for reserving certain network ports for particular utilties, namely for a VM host to reserve for VMs?
I want to reserve certain port numbers on a VM host for use by the VMs themselves.
Is there a mechanism by which the host can exclude those ports from being allocated to processes not related to the ...
0
votes
1
answer
53
views
How to avoid listen-port conflicts on package installation
I'm working on a private Debian package that deploys a service which binds to port 80.
[Service]
ExecStart=/usr/bin/foo --port 80
I realize almost every other package which serves HTTP is also going ...
1
vote
0
answers
45
views
Ubuntu Openvpn no traffic to client
I got a problem with an openvpn server on dedicated hosting vm - the problem is that the packets do not pass to the client after the connection is established (although during the establishment of ...
1
vote
0
answers
192
views
Issue with 'Destination port unreachable" when installing linux
I'm currently trying to install Arch Linux on a new disk, but I'm encountering a networking issue that I can't seem to resolve. I'm getting a "Destination Port Unreachable" error when I try ...
0
votes
0
answers
73
views
iptables udp packet forwarding
On my Linux machine, I have a UDP server listening on IP 192.168.1.5 port 44123 and an application that sends UDP packets to other devices on the same network, in particular to devices with IP 192.168....
0
votes
0
answers
50
views
linux + how to close connection that are not in used
from netstat -anp | grep :8088 | grep EST
we can see the following connection ( is example from our hadoop server )
tcp 0 0 192.83.23.112:42360 192.83.66.114:8088 ESTABLISHED ...
0
votes
1
answer
278
views
What is a port?
I have been running an Apache web server for numerous years and have been using ports as a medium to serve requests.
Recently, I began using Unix sockets to serve MySQL requests. The function of Unix ...
0
votes
0
answers
115
views
How to assign virtual IP address from a router
My home network looks like this:
Everything is GNU/Linux and network-sharing is setup using networkmanager with nmtui, I have no experience with any other tools.
I need to access router A from PC ...
0
votes
1
answer
361
views
"Connection refused lost connection" error while using scp command
I tried to transfer a file from an HPC system to a remote CentOS system
using the following command line:
scp /ANKAN/data/abc.pdf [email protected]:/data/ANKAN
But I am getting the following ...