Skip to content

A simple DNS server that gets a hostname from a client and returns the hostname's IP address

Notifications You must be signed in to change notification settings

Coursal/DNS-Server

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

DNS-Server

A simple DNS server that gets a hostname from a client and returns the hostname's IP address.

Basically, this simplistic DNS server has as point of reference a text file called hosts.txt where each line has a hostname and its IP address separated with one space (initialized only with localhost):

When the client sends a UDP packet with a hostname, the server looks up hosts.txt and if it fails to find the address of the given hostname, it searches it on the internet with java.net.InetAddress.getByName() and puts the found address along with the hostname in hosts.txt. If the hostname doesn't seem to exist, it sends "-1" back to the client.

Execution

  • java DNS_Server <port_number (default: 8888)>
  • java DNS_Server

Output example

Tied with sister project DNS-Client.

Tested on NetBeans 8.2.

About

A simple DNS server that gets a hostname from a client and returns the hostname's IP address

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages