keecode logokeecode
161

SNMP

Simple Network Management Protocol

UDP
Network

Port Information

Port Number

161

Protocol

UDP

Category

Network

Common Usage

URL with Port

http://localhost:161
https://example.com:161

Node.js/Express Server

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

app.listen(PORT, () => {
  console.log(`Server running on port ${PORT}`);
});

Docker Port Mapping

docker run -p 161:161 myapp

# In docker-compose.yml
ports:
  - "161:161"

Firewall Configuration

# Linux/Ubuntu firewall
sudo ufw allow 161/udp

# Check if port is in use
netstat -an | grep 161