keecode logokeecode
53

DNS

Domain Name System

UDP/TCP
Network

Port Information

Port Number

53

Protocol

UDP/TCP

Category

Network

Common Usage

URL with Port

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

Node.js/Express Server

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

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

Docker Port Mapping

docker run -p 53:53 myapp

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

Firewall Configuration

# Linux/Ubuntu firewall
sudo ufw allow 53/udp/tcp

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