If we are not getting connected to our instance, then there must be some below-mentioned issues:
- Username and password issue
- IGW Mapping
- Ports enable or disable on Security Group
- VNIC (Virtual Network Interface Card)
- OS Firewall
- RDP Service
Troubleshoot to get access when the primary NIC card of EC2 instance is misconfigured.
Steps we need to follow:
- Create a VPC
- Launch a Windows instance in the VPC, created by you
- Login to Web Server and disable NIC card
- Create an ENI in the same AZ
- Attach NIC card to the instance
- Provide an Elastic IP to NIC card
- Login to the web server instance using Elastic IP
- Enable primary NIC card
- Detach secondary NIC card from the web server
- Login to the web server instance using the previous IP address
![]() |
Fig: Recover Instance When NIC Card Is Misconfigured |
Step 1: Create a VPC named 'webshack-vpc':
Follow the below-mentioned link to create a VPC:
Step 2: Launch a Windows instance in the VPC, created by you:
AWS âž” Services âž” EC2 âž” Instances âž” Launch Instance âž” Select 'Free tier only' âž” Select 'Microsoft Windows Server 2008 R2 Base' AMI âž” Next âž” In Configure Instance Details: Select number of instances: '1'âž” Select Network: 'webshack-vpc' âž” Subnet: select public subnet âž” Next âž” Next âž” Click to add a Name tag âž” Name: webshack-web-server âž” Next âž” Review and Launch âž” Launch âž” Choose an existing key pair or create a new one âž” Launch Instances âž” Vie Instances.
In the description of this Web Server, in the Network interfaces section, we can see that there is only one NIC card named 'eth0'.
Decrypt password and save in a safe place.
AWS âž” Services âž” EC2 âž” Instances âž” Select Instance 'webshack-web-server' âž” Actions âž” Get Windows Password âž” Browse âž” Provide Private Key âž” Decrypt Password âž” Copy password to notepad and save it to a safe place.
Step 3: Login to Web Server and disable NIC card:
AWS âž” Services âž” EC2 âž” Instances âž” Select Instance âž” From Description copy Public IP âž” Go to Run âž” type 'mstsc' âž” paste Public IP âž” Connect âž” Username: Administrator âž” Password: <paste from notepad> âž” Connect.
Now, we will disable the primary NIC card for the practical purpose:
In this RDP connection go to Run âž” type command 'control.exe /name Microsoft.NetworkandSharingCenter' âž” Change Adapter Settings âž” Right Click on Local Area Connection âž” Disable âž” Close RDP connection.
Now we are not able to do any work on this instance and we need to close this RDP connection.
[1] Try to ping to the Web Server:
Go to Security Group and verify icmp service is running or not:
AWS âž” Services âž” EC2 âž” Instances âž” Select instance named webshack-web-server âž” In the Description, navigate to Security Groups âž” Click on Inbound Rules âž” We can see port for icmp is not open. So, first, we need to open it.
Click on the name of your SG just before View Inbound Rules âž” Edit Inbound Rules âž” Type: All ICMP-IPv4 âž” Source: provide IP or click on Anywhere âž” Save.
Now try to ping Web Server. There is some network error, means, the network card which is providing me access is misconfigured.
[2] From AWS console, in status check we can see, one status check is failed.
[3] Now, verify the Instance Screenshot:
One more possibility we could have that there could be a blue dump error. We can verify this in Screenshot:
Select instance âž” Actions âž” Instance Settings âž” Get instance Screenshot.
AWS âž” Services âž” EC2 âž” Instances âž” Select Instance âž” Actions âž” Instance Settings âž” Get Instance Screenshot.
This will display the screen of the instance. If this is running, it means the instance is running on the AWS console, otherwise, there could be a blue screen or any other error message.
[4] Check System logs:
To get system logs, we need to navigate to:
Select instance âž” Actions âž” Instance Settings âž” Get System Log.
In logs, we can see Windows is ready to use.
[4] Try to access RDP session after reboot.
As a reboot just restarts the operating system services. So, this thing is not going to help us.
[5] Try to perform Stop and Start.
If we are not using an Elastic IP, then our IP would be changed. So we need to access by using updated IP. Again, this is not going to help us.
We cannot detach the primary interface card. So, we will create a secondary Network Interface Card. This new card inside AWS is known as Elastic Network Interface (ENI). We say this elastic because this NIC card can detach and attach to other instances as well, but one time at an instance only. One side of this card will attach to the public subnet and another side will connect to the Web server instance. As we connect NIC card to subnet, this will provide an IP to this NIC card.
Hurray!!!
We are through.
Very soon, this will be in the available state.
Yaayyyy!
Getting Access.
TROUBLESHOOTING:
Suppose, we are not aware of what the issue is, then we need to do some troubleshooting:[1] Try to ping to the Web Server:
Go to Security Group and verify icmp service is running or not:
AWS âž” Services âž” EC2 âž” Instances âž” Select instance named webshack-web-server âž” In the Description, navigate to Security Groups âž” Click on Inbound Rules âž” We can see port for icmp is not open. So, first, we need to open it.
Click on the name of your SG just before View Inbound Rules âž” Edit Inbound Rules âž” Type: All ICMP-IPv4 âž” Source: provide IP or click on Anywhere âž” Save.
Now try to ping Web Server. There is some network error, means, the network card which is providing me access is misconfigured.
[2] From AWS console, in status check we can see, one status check is failed.
Status Check fails due to two reasons: 1. System Status Checks and 2. Instance Status Checks.
We can verify what is the exact reason from Status Check:
AWS âž” Services âž” EC2 âž” Instances âž” Select instances âž” In bottom click on Status Check:
Here, we can see that the Instance Status Check is failed.
[3] Now, verify the Instance Screenshot:
One more possibility we could have that there could be a blue dump error. We can verify this in Screenshot:
Select instance âž” Actions âž” Instance Settings âž” Get instance Screenshot.
AWS âž” Services âž” EC2 âž” Instances âž” Select Instance âž” Actions âž” Instance Settings âž” Get Instance Screenshot.
[4] Check System logs:
To get system logs, we need to navigate to:
Select instance âž” Actions âž” Instance Settings âž” Get System Log.
In logs, we can see Windows is ready to use.
[4] Try to access RDP session after reboot.
As a reboot just restarts the operating system services. So, this thing is not going to help us.
[5] Try to perform Stop and Start.
If we are not using an Elastic IP, then our IP would be changed. So we need to access by using updated IP. Again, this is not going to help us.
There are two ways to access our Web Server:
- Using secondary ENI (Elastic Network Interface)
- Detach and Attach
Using Secondary ENI:
We cannot detach the primary interface card. So, we will create a secondary Network Interface Card. This new card inside AWS is known as Elastic Network Interface (ENI). We say this elastic because this NIC card can detach and attach to other instances as well, but one time at an instance only. One side of this card will attach to the public subnet and another side will connect to the Web server instance. As we connect NIC card to subnet, this will provide an IP to this NIC card.
Now, we can see there are two ways to reach the Web-server instance. The first way is via using primary NIC card, which is disabled and the second way is via using a secondary NIC card. Traffic cannot pass from your subnet to an instance until it is passing through a Security Group. So, we need to provide a Security Group to secondary NIC card. We can create a new SG or can use an existing one. Also, we need to provide an Elastic IP to the secondary NIC card, because this only has a private IP. So, we need to provide two things to this secondary NIC card: 1) a Security Group and 2) an Elastic IP.
Step 4: Create an ENI in the same AZ:
AWS âž” Services âž” EC2 âž” Network Interfaces âž” Create Network Interface âž” Description: eni-nic2 âž” Subnet: <Select public subnet of your VPC> âž” IPv4 Private IP: Auto-assign (use custom, if specifically want to provide an IP from our Subnet) âž” Elastic Fabric Adapter: do not tick because we are not going to create a "Fiber Channel Network Card" âž” Security groups: select one or more SGs from list âž” Create.
Very soon we can see that it is in the available state.
Step 5: Attach NIC card to the instance:
AWS âž” Services âž” EC2 âž” Network Interfaces âž” Select NIC card created by you âž” Attach âž” Instance ID: <select webshack-web-server instance from drop-down list> âž” Attach.
Now, this card is attached to our web server instance, which we can verify in the description by selecting the web server instance from EC2 service. There would be two network cards; eth0 and eth1.
Step 6: Provide an Elastic IP to NIC card:
Allocate an Elastic IP:
AWS âž” Services âž” EC2 âž” Elastic IPs âž” Allocate new address âž” IPv4 address pool: Amazon pool âž” Allocate âž” Close.
Associate to NIC card:
Select Elastic IP âž” Actions âž” Associate address âž” Resource type: Network Interface âž” Network Interface: <select 'eni-nic2' NIC card> âž” Private IP: <select from drop-down list> âž” Reassociation: <if we have any elastic IP, for our web server, then we can provide here> âž” Associate âž” Close.
Step 7: Login to the web server instance using Elastic IP:
AWS âž” Services âž” EC2 âž” Select webshack-web-server instance âž” Copy Elastic IP from the description âž” go to Run âž” type 'mstsc' âž” paste copied Elastic IP âž” Connect âž” Username: administrator âž” Paste password from notepad âž” Connect.
Hurray!!!
We are through.
Step 8: Enable primary NIC card:
In this RDP connection go to Run âž” type command 'control.exe /name Microsoft.NetworkandSharingCenter' âž” Change Adapter Settings âž” Right Click on disabled Local Area Connection âž” Enable (OR just double click to enable that LAN connection) âž” Close RDP connection.
Step 9: Detach secondary NIC card from the web server:
AWS âž” Services âž” EC2 âž” Network Interfaces âž” Select NIC card named 'eni-nic2' âž” Detach âž” Yes, Detach.Very soon, this will be in the available state.
Step 10: Login to the web server instance using the previous IP address:
AWS âž” Services âž” EC2 âž” Select webshack-web-server instance âž” Copy previous public IP from description âž” go to Run âž” type 'mstsc' âž” paste copied IP âž” Connect âž” Username: administrator âž” password: paste from notepad âž” Connect.Yaayyyy!
Getting Access.
No comments:
Post a Comment