mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-31 14:52:43 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			25 lines
		
	
	
	
		
			431 B
		
	
	
	
		
			Markdown
		
	
	
	
	
	
			
		
		
	
	
			25 lines
		
	
	
	
		
			431 B
		
	
	
	
		
			Markdown
		
	
	
	
	
	
| ## Name
 | |
| 
 | |
| host - DNS lookup utility
 | |
| 
 | |
| ## Synopsis
 | |
| 
 | |
| ```**sh
 | |
| $ host <name>
 | |
| ```
 | |
| 
 | |
| ## Description
 | |
| 
 | |
| `host` is a simple utility for performing DNS lookups. It is used to
 | |
| convert names to IP addresses and vice versa.
 | |
| 
 | |
| `name` is the domain name that is to be looked up. It can also be a
 | |
| dotted-decimal IPv4 address, in which case `host` will perform a reverse
 | |
| lookup for that address.
 | |
| 
 | |
| ## Examples
 | |
| 
 | |
| ```sh
 | |
| $ host github.com
 | |
| $ host 8.8.8.8
 | |
| ```
 | 
