Finding the IP address of your server is essential for managing and accessing it, and at rental-server.net, we provide you with the tools and knowledge to do just that. This ensures seamless server management and connectivity. Whether you’re looking for a dedicated server, VPS, or cloud server, understanding your server’s IP address is the first step towards effective server administration.
1. What Is An IP Address And Why Do You Need To Find It?
An IP address is a unique numerical label assigned to each device connected to a computer network that uses the Internet Protocol for communication. It’s like a postal address for your server, allowing other devices to locate and communicate with it. Knowing your server’s IP address is crucial for various tasks, including:
- Accessing Your Server: Using SSH, Remote Desktop, or other remote access tools.
- Configuring DNS Settings: Pointing your domain name to your server.
- Troubleshooting Network Issues: Identifying and resolving connectivity problems.
- Setting Up Firewalls: Allowing or blocking traffic to specific IP addresses.
- Monitoring Server Activity: Tracking traffic and identifying potential security threats.
1.1. Understanding IPv4 vs. IPv6 Addresses
There are two main versions of IP addresses: IPv4 and IPv6. IPv4 addresses are the traditional 32-bit addresses, represented in dotted decimal notation (e.g., 192.168.1.1). IPv6 addresses are the newer 128-bit addresses, represented in hexadecimal notation (e.g., 2001:0db8:85a3:0000:0000:8a2e:0370:7334).
IPv4 addresses are becoming increasingly scarce, leading to the adoption of IPv6. While IPv4 is still widely used, IPv6 offers several advantages, including a larger address space and improved security features. According to Google, IPv6 adoption is steadily increasing, with over 45% of users accessing Google services over IPv6 as of 2024.
1.2. Static vs. Dynamic IP Addresses
IP addresses can be either static or dynamic. A static IP address remains constant and doesn’t change, while a dynamic IP address can change over time. Static IP addresses are typically used for servers and other devices that need a consistent address, while dynamic IP addresses are commonly used for client devices like laptops and smartphones.
DHCP (Dynamic Host Configuration Protocol) is used to automatically assign dynamic IP addresses to devices on a network. According to the Internet Engineering Task Force (IETF), DHCP simplifies network administration by automating the assignment of IP addresses and other network configuration parameters.
1.3. Why Finding the Right IP Address Matters
Finding the correct IP address for your server is critical for ensuring that your services are accessible and functioning correctly. Using the wrong IP address can lead to connectivity issues, DNS resolution problems, and security vulnerabilities. At rental-server.net, we emphasize the importance of accurate IP address management to avoid these potential pitfalls.
2. Simple Methods To Find Your Server’s IP Address
There are several straightforward methods to find your server’s IP address, depending on your operating system and hosting environment.
2.1. Using The Command Line Interface (CLI)
The command line interface (CLI) provides a powerful way to retrieve your server’s IP address. This method works across various operating systems, including Windows, macOS, and Linux.
2.1.1. Windows: Using ipconfig
In Windows, you can use the ipconfig
command to find your server’s IP address.
- Open the Command Prompt by searching for “cmd” in the Start menu and pressing Enter.
- Type
ipconfig
and press Enter. - Look for the “IPv4 Address” under the appropriate network adapter (e.g., Ethernet or Wi-Fi).
ipconfig
Ethernet adapter Ethernet:
Connection-specific DNS Suffix . : example.com
IPv4 Address. . . . . . . . . . . : 192.168.1.100
Subnet Mask . . . . . . . . . . . : 255.255.255.0
Default Gateway . . . . . . . . . : 192.168.1.1
2.1.2. macOS and Linux: Using ifconfig or ip
On macOS and Linux, you can use the ifconfig
or ip
command to find your server’s IP address.
- Open the Terminal application.
- Type
ifconfig
and press Enter (Note:ifconfig
might be deprecated on some systems; if so, useip addr
instead). - Look for the “inet” address under the appropriate network interface (e.g., eth0 or en0).
ifconfig
eth0: flags=4163<UP,BROADCAST,RUNNING,MULTICAST> mtu 1500
inet 192.168.1.100 netmask 255.255.255.0 broadcast 192.168.1.255
inet6 fe80::a00:27ff:fe94:4142 prefixlen 64 scopeid 0x20<link>
ether 08:00:27:94:41:42 txqueuelen 1000 (Ethernet)
RX packets 10 bytes 826 (826.0 B)
RX errors 0 dropped 0 overruns 0 frame 0
TX packets 10 bytes 826 (826.0 B)
TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0
Alternatively, use the ip addr
command:
ip addr
1: lo: <LOOPBACK,UP,LOWER_UP> mtu 65536 qdisc noqueue state UNKNOWN group default qlen 1000
link/loopback 00:00:00:00:00:00 brd 00:00:00:00:00:00
inet 127.0.0.1/8 scope host lo
valid_lft forever preferred_lft forever
inet6 ::1/128 scope host
valid_lft forever preferred_lft forever
2: eth0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc pfifo_fast state UP group default qlen 1000
link/ether 08:00:27:73:3c:4a brd ff:ff:ff:ff:ff:ff
inet 192.168.1.100/24 brd 192.168.1.255 scope global eth0
valid_lft forever preferred_lft forever
inet6 fe80::a00:27ff:fe73:3c4a/64 scope link
valid_lft forever preferred_lft forever
Look for the “inet” address under the appropriate network interface.
2.2. Checking Your Hosting Provider’s Control Panel
Most hosting providers offer a control panel (e.g., cPanel, Plesk, or a custom panel) that displays your server’s IP address.
- Log in to your hosting provider’s control panel.
- Navigate to the “Server Information” or “Dashboard” section.
- Look for the “IP Address” field.
2.3. Using Online IP Lookup Tools
There are numerous online tools that can display your server’s IP address. These tools work by showing you the IP address that your server is using to access the internet.
- Open a web browser on your server.
- Go to a website like “WhatIsMyIP.com” or “IPLocation.net”.
- The website will display your server’s public IP address.
2.4. Checking Your Server’s Network Configuration Files
You can also find your server’s IP address by examining its network configuration files. The location and format of these files vary depending on the operating system.
2.4.1. Linux: /etc/network/interfaces or /etc/sysconfig/network-scripts/ifcfg-*
On Linux systems, network configuration is typically stored in the /etc/network/interfaces
file (on Debian-based systems) or in the /etc/sysconfig/network-scripts/ifcfg-*
files (on Red Hat-based systems).
-
Open the configuration file using a text editor (e.g.,
nano
orvi
).sudo nano /etc/network/interfaces
-
Look for the “address” line, which specifies the server’s IP address.
auto eth0 iface eth0 inet static address 192.168.1.100 netmask 255.255.255.0 gateway 192.168.1.1
2.4.2. Windows: Registry Editor
In Windows, network configuration is stored in the Registry.
- Open the Registry Editor by searching for “regedit” in the Start menu and pressing Enter.
- Navigate to the following key:
HKEY_LOCAL_MACHINESYSTEMCurrentControlSetServicesTcpipParametersInterfaces
. - Browse through the subkeys to find the network adapter you’re interested in.
- Look for the “IPAddress” value, which specifies the server’s IP address.
Warning: Editing the Registry can be risky. Make sure to back up your Registry before making any changes.
2.5. Contacting Your Hosting Provider
If you’re unable to find your server’s IP address using the methods above, you can always contact your hosting provider for assistance. They should be able to provide you with the IP address and any other necessary network information. At rental-server.net, we offer 24/7 support to help you with any server-related issues, including finding your IP address. Address: 21710 Ashbrook Place, Suite 100, Ashburn, VA 20147, United States. Phone: +1 (703) 435-2000. Website: rental-server.net.
3. Common Issues And Troubleshooting
Sometimes, you may encounter issues while trying to find your server’s IP address. Here are some common problems and how to troubleshoot them.
3.1. Incorrect IP Address Displayed
If the IP address displayed is not the one you expect, it could be due to several reasons:
- Multiple Network Adapters: Your server may have multiple network adapters (e.g., Ethernet and Wi-Fi). Make sure you’re checking the correct adapter.
- VPN or Proxy: If you’re using a VPN or proxy, the IP address displayed may be the IP address of the VPN or proxy server, not your server’s actual IP address.
- DHCP Lease: If your server is configured to use DHCP, its IP address may have changed. Try renewing the DHCP lease to obtain a new IP address.
3.2. Connectivity Problems
If you’re unable to connect to your server using the IP address you found, it could be due to:
- Firewall Issues: Your server’s firewall may be blocking traffic to the IP address. Make sure the firewall is configured to allow traffic on the necessary ports.
- DNS Problems: If you’re using a domain name to connect to your server, there may be a DNS issue. Check your DNS settings to make sure your domain name is pointing to the correct IP address.
- Network Issues: There may be a problem with your network connection. Check your network cables and router to make sure everything is working properly.
3.3. Dynamic IP Address Changes
If your server is configured to use DHCP, its IP address may change periodically. This can cause problems if you’re relying on a static IP address. To avoid this, you can:
- Assign a Static IP Address: Configure your server to use a static IP address instead of DHCP.
- Use Dynamic DNS (DDNS): DDNS allows you to associate a domain name with a dynamic IP address. When your IP address changes, DDNS automatically updates the DNS records to reflect the new IP address.
3.4. IP Address Conflicts
An IP address conflict occurs when two devices on the same network are assigned the same IP address. This can cause connectivity problems for both devices. To resolve an IP address conflict:
- Identify the Conflicting Devices: Use network scanning tools to identify the devices that are using the same IP address.
- Change the IP Address of One of the Devices: Assign a different IP address to one of the conflicting devices. If the device is configured to use DHCP, try renewing the DHCP lease to obtain a new IP address.
4. Understanding Public vs. Private IP Addresses
It’s important to distinguish between public and private IP addresses. Public IP addresses are used to identify your server on the internet, while private IP addresses are used within a private network.
4.1. Public IP Addresses
A public IP address is a unique IP address that is assigned to your server by your internet service provider (ISP). This IP address is used to communicate with other devices on the internet.
4.2. Private IP Addresses
A private IP address is an IP address that is used within a private network, such as your home or office network. Private IP addresses are not routable on the internet. The following ranges of IP addresses are reserved for private use:
- 10.0.0.0 – 10.255.255.255
- 172.16.0.0 – 172.31.255.255
- 192.168.0.0 – 192.168.255.255
4.3. Network Address Translation (NAT)
Network Address Translation (NAT) is a technique used to translate private IP addresses to public IP addresses, and vice versa. This allows devices on a private network to communicate with devices on the internet using a single public IP address.
NAT is typically performed by a router or firewall. When a device on the private network sends traffic to the internet, the router translates the private IP address of the device to its own public IP address. When traffic returns from the internet, the router translates the public IP address back to the private IP address of the device.
5. Security Considerations For Your Server’s IP Address
Your server’s IP address is a valuable piece of information that can be used by attackers to target your server. It’s important to take steps to protect your server’s IP address and prevent it from being used for malicious purposes.
5.1. Protecting Your IP Address From DDoS Attacks
A Distributed Denial of Service (DDoS) attack is a type of attack that attempts to overwhelm your server with traffic, making it unavailable to legitimate users. DDoS attacks often target your server’s IP address.
To protect your server from DDoS attacks:
- Use a DDoS Mitigation Service: A DDoS mitigation service can help to filter out malicious traffic and prevent it from reaching your server.
- Use a Content Delivery Network (CDN): A CDN can help to distribute your server’s content across multiple servers, making it more difficult for attackers to overwhelm your server.
- Configure Your Firewall: Configure your firewall to block traffic from suspicious IP addresses and networks.
5.2. Using A VPN Or Proxy Server
A VPN (Virtual Private Network) or proxy server can help to hide your server’s IP address by routing your traffic through a different server. This can make it more difficult for attackers to identify your server’s IP address and target it with attacks.
5.3. Keeping Your Server Software Up To Date
Keeping your server software up to date is crucial for security. Software updates often include security patches that fix vulnerabilities that could be exploited by attackers.
5.4. Monitoring Your Server’s Traffic
Monitoring your server’s traffic can help you to identify suspicious activity and potential security threats. Use network monitoring tools to track traffic to and from your server and look for any unusual patterns.
6. Dedicated Servers Vs. VPS Vs. Cloud Servers: IP Address Implications
The type of server you choose (dedicated server, VPS, or cloud server) can have implications for how you manage and access its IP address.
6.1. Dedicated Servers
A dedicated server is a physical server that is dedicated to a single user. With a dedicated server, you have full control over the server’s hardware and software, including its IP address. You can assign a static IP address to your dedicated server and manage its network configuration directly.
6.2. Virtual Private Servers (VPS)
A VPS is a virtual server that shares hardware resources with other virtual servers. With a VPS, you typically have less control over the server’s hardware and network configuration than with a dedicated server. However, you still have a good degree of control over the server’s software and IP address. You can usually assign a static IP address to your VPS, but the process may be managed by your hosting provider.
6.3. Cloud Servers
A cloud server is a virtual server that is hosted on a cloud computing platform. Cloud servers offer scalability and flexibility, allowing you to easily scale your resources up or down as needed. With a cloud server, the IP address may be dynamic or static, depending on the cloud provider and the specific service you’re using. Some cloud providers offer the option to reserve a static IP address for your cloud server.
Feature | Dedicated Server | VPS | Cloud Server |
---|---|---|---|
IP Address Control | Full control over IP address, can assign static IP | Usually can assign static IP, but provider may manage | May be dynamic or static, depending on provider and service |
Hardware Control | Full control over hardware | Limited control, shares resources with other VPSs | Limited control, hosted on cloud platform |
Scalability | Limited scalability, requires hardware upgrades | Good scalability, can scale resources up or down | Excellent scalability, easily scale resources as needed |
Cost | Generally more expensive than VPS or cloud server | Less expensive than dedicated server, more than cloud | Typically pay-as-you-go, can be cost-effective |
Use Cases | High-performance applications, resource-intensive tasks | Web hosting, application development, testing | Scalable applications, websites with variable traffic |
7. Finding The IP Address of Your Server: Step-by-Step Guides
Let’s dive into detailed, step-by-step guides for finding the IP address of your server across different platforms and scenarios.
7.1. Finding Your Server’s IP Address On Windows Server
Windows Server is a popular choice for businesses needing a robust and reliable operating system for their servers. Here’s how to find the IP address:
-
Open the Command Prompt:
- Click on the Start button.
- Type
cmd
orCommand Prompt
. - Right-click on Command Prompt and select “Run as administrator.”
-
Use the
ipconfig
Command:- In the Command Prompt window, type
ipconfig
and press Enter. - Scroll through the results to find the section that corresponds to your network adapter (e.g., Ethernet or Wi-Fi).
- Look for the line labeled “IPv4 Address.” The value next to it is your server’s IP address.
- In the Command Prompt window, type
-
Example Output:
Windows IP Configuration Ethernet adapter Ethernet: Connection-specific DNS Suffix . : example.com IPv4 Address. . . . . . . . . . . : 192.168.1.100 Subnet Mask . . . . . . . . . . . : 255.255.255.0 Default Gateway . . . . . . . . . . : 192.168.1.1
In this example, the server’s IP address is
192.168.1.100
.
7.2. Finding Your Server’s IP Address On Linux
Linux servers are widely used for their stability and flexibility. The method to find the IP address varies slightly depending on the distribution, but here are two common methods:
7.2.1. Using ifconfig
:
-
Open the Terminal:
- Access the terminal through your server’s console or an SSH connection.
-
Run the
ifconfig
Command:- Type
ifconfig
and press Enter. - Look for the network interface you’re using (e.g.,
eth0
orenp0s3
). - Find the line that starts with
inet
. The IP address is the value next to it.
- Type
-
Example Output:
eth0: flags=4163<UP,BROADCAST,RUNNING,MULTICAST> mtu 1500 inet 192.168.1.100 netmask 255.255.255.0 broadcast 192.168.1.255 inet6 fe80::a00:27ff:fe94:4142 prefixlen 64 scopeid 0x20<link> ether 08:00:27:94:41:42 txqueuelen 1000 (Ethernet) RX packets 10 bytes 826 (826.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 10 bytes 826 (826.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0
In this example, the server’s IP address is
192.168.1.100
.
7.2.2. Using ip addr
:
-
Open the Terminal:
- Access the terminal through your server’s console or an SSH connection.
-
Run the
ip addr
Command:- Type
ip addr
and press Enter. - Look for the network interface you’re using (e.g.,
eth0
orenp0s3
). - Find the line that starts with
inet
under the correct interface. The IP address is the value before the/
symbol.
- Type
-
Example Output:
1: lo: <LOOPBACK,UP,LOWER_UP> mtu 65536 qdisc noqueue state UNKNOWN group default qlen 1000 link/loopback 00:00:00:00:00:00 brd 00:00:00:00:00:00 inet 127.0.0.1/8 scope host lo valid_lft forever preferred_lft forever inet6 ::1/128 scope host valid_lft forever preferred_lft forever 2: eth0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc pfifo_fast state UP group default qlen 1000 link/ether 08:00:27:73:3c:4a brd ff:ff:ff:ff:ff:ff inet 192.168.1.100/24 brd 192.168.1.255 scope global eth0 valid_lft forever preferred_lft forever inet6 fe80::a00:27ff:fe73:3c4a/64 scope link valid_lft forever preferred_lft forever
In this example, the server’s IP address is
192.168.1.100
.
7.3. Finding Your Server’s IP Address On macOS Server
macOS Server, while less common, is used in some environments. Here’s how to find the IP address:
-
Open the Terminal:
- Open the Terminal application from
/Applications/Utilities/
.
- Open the Terminal application from
-
Use the
ifconfig
Command:- Type
ifconfig
and press Enter. - Look for the network interface you’re using (e.g.,
en0
oren1
). - Find the line that starts with
inet
. The IP address is the value next to it.
- Type
-
Example Output:
en0: flags=8863<UP,BROADCAST,SMART,RUNNING,SIMPLEX,MULTICAST> mtu 1500 ether a8:66:78:22:33:44 inet 192.168.1.100 netmask 0xffffff00 broadcast 192.168.1.255 media: autoselect status: active
In this example, the server’s IP address is
192.168.1.100
.
7.4. Finding Your Server’s IP Address On Cloud Platforms (AWS, Azure, Google Cloud)
Cloud platforms like AWS, Azure, and Google Cloud offer web-based consoles where you can easily find your server’s IP address.
7.4.1. Amazon Web Services (AWS):
-
Log into the AWS Management Console:
- Go to the AWS Management Console and log in with your credentials.
-
Navigate to EC2 Instances:
- In the AWS Management Console, go to “Services” and select “EC2” under the “Compute” section.
-
Select Your Instance:
- In the EC2 dashboard, click on “Instances” in the left-hand menu.
- Find and select your server instance.
-
View the IP Address:
- In the instance details, look for the “Public IPv4 address” field. This is your server’s public IP address.
- You can also find the “Private IPv4 address” for internal communication within the AWS network.
7.4.2. Microsoft Azure:
-
Log into the Azure Portal:
- Go to the Azure Portal and log in with your credentials.
-
Navigate to Virtual Machines:
- In the Azure Portal, search for and select “Virtual machines.”
-
Select Your Virtual Machine:
- Find and select your server’s virtual machine.
-
View the IP Address:
- In the virtual machine overview, you’ll find the “Public IP address” listed under the “Networking” section.
- The “Private IP address” is also listed for internal communication within the Azure network.
7.4.3. Google Cloud Platform (GCP):
-
Log into the Google Cloud Console:
- Go to the Google Cloud Console and log in with your credentials.
-
Navigate to Compute Engine:
- In the Google Cloud Console, go to “Navigation menu” and select “Compute Engine” -> “VM instances.”
-
Select Your Instance:
- Find and select your server instance.
-
View the IP Address:
- In the instance details, you’ll find the “External IP” listed in the “Network interfaces” section. This is your server’s public IP address.
- The “Internal IP” is also listed for internal communication within the GCP network.
7.5. Using Online IP Lookup Tools From Your Server
If you have a server without a graphical interface or easy command-line access, you can use online IP lookup tools directly from the server using curl
or wget
.
-
Open the Terminal:
- Access the terminal through your server’s console or an SSH connection.
-
Use
curl
orwget
:-
Type one of the following commands and press Enter:
curl ifconfig.me
wget -qO- http://ipecho.net/plain
curl api.ipify.org
-
-
View the IP Address:
- The command will return your server’s public IP address directly in the terminal.
Example using
curl
:curl ifconfig.me 203.0.113.45
In this example, the server’s public IP address is
203.0.113.45
.
8. Why Choose Rental-Server.Net For Your Server Needs
At rental-server.net, we understand the importance of reliable server solutions tailored to your specific needs. Whether you’re a small business or a large enterprise, we offer a range of dedicated servers, VPS, and cloud servers to meet your requirements.
8.1. Comprehensive Server Solutions
We provide detailed information about each server type, including performance benchmarks, cost comparisons, and feature sets. This helps you make an informed decision when choosing the right server for your needs.
8.2. Expert Guidance and Support
Our team of experts is available to guide you through the selection process and answer any questions you may have. We offer 24/7 technical support to ensure your server is running smoothly.
8.3. Transparent Pricing and Flexible Options
We believe in transparent pricing and offer flexible options to suit your budget. Our goal is to provide you with the best value for your investment.
By choosing rental-server.net, you gain access to a wealth of resources and support to help you manage your server effectively.
9. Real-World Scenarios: Finding Your Server’s IP Address In Different Contexts
Let’s explore some practical scenarios where finding your server’s IP address becomes crucial and how to approach them.
9.1. Setting Up A Web Server
Scenario: You’ve just set up a new web server and need to point your domain name to it.
Steps:
-
Find the Server’s IP Address: Use one of the methods described earlier (e.g.,
ipconfig
on Windows,ifconfig
orip addr
on Linux, or your hosting provider’s control panel) to find your server’s public IP address. -
Access Your Domain Registrar: Log in to the website of your domain registrar (e.g., GoDaddy, Namecheap, Google Domains).
-
Update DNS Records:
- Find the DNS settings for your domain.
- Locate the A record (Address record) for your domain (or create one if it doesn’t exist).
- Update the A record to point to your server’s public IP address.
- If you want your subdomain (e.g.,
www.example.com
) to point to the same server, update or create a CNAME record that points to your main domain.
-
Wait for DNS Propagation: DNS changes can take up to 48 hours to propagate across the internet. Use online DNS lookup tools to check if the changes have been applied.
9.2. Configuring Remote Access (SSH or RDP)
Scenario: You need to remotely access your server to manage files, install software, or troubleshoot issues.
Steps:
-
Find the Server’s IP Address: Use one of the methods described earlier to find your server’s public IP address.
-
Enable SSH or RDP:
- SSH (Secure Shell): On Linux servers, SSH is typically enabled by default. Ensure your firewall allows traffic on port 22 (or a custom SSH port).
- RDP (Remote Desktop Protocol): On Windows servers, enable Remote Desktop in the System Properties. Ensure your firewall allows traffic on port 3389.
-
Use an SSH or RDP Client:
- SSH: Use an SSH client like PuTTY (Windows), Terminal (macOS/Linux), or PowerShell (Windows).
- RDP: Use the Remote Desktop Connection client built into Windows, or a third-party RDP client for macOS or Linux.
-
Connect to the Server:
- Enter the server’s IP address into the client.
- Enter your username and password when prompted.
9.3. Setting Up A Game Server
Scenario: You want to host a game server for you and your friends to play online.
Steps:
-
Find the Server’s IP Address: Use one of the methods described earlier to find your server’s public IP address.
-
Configure Port Forwarding:
- Log in to your router’s administration panel.
- Find the port forwarding settings.
- Create a new port forwarding rule for the game server.
- Specify the game’s port (e.g., 25565 for Minecraft) and forward it to your server’s internal IP address.
-
Share the IP Address and Port: Give your friends your server’s public IP address and the game port so they can connect to the server.
-
Firewall Configuration: Ensure that your server’s firewall is configured to allow inbound traffic on the game port.
9.4. Troubleshooting Network Issues
Scenario: You’re experiencing connectivity issues with your server and need to diagnose the problem.
Steps:
-
Find the Server’s IP Address: Use one of the methods described earlier to find your server’s public and private IP addresses.
-
Ping the Server:
- Open a command prompt or terminal.
- Type
ping <server_ip_address>
and press Enter. - If the ping is successful, you’ll see replies from the server. If it fails, there’s a network connectivity issue.
-
Traceroute:
- Use the
traceroute
command (ortracert
on Windows) to trace the path from your computer to the server. - This can help identify where the connection is failing.
- Use the
-
Check DNS Resolution:
- Use the
nslookup
command to check if your domain name is resolving to the correct IP address. - If
- Use the