How to
- Complete this form to create a VPN account
- Forward your request through your faculty in charge.
Mention the requirement and the duration for which VPN access is needed in the request. - Inform CNC via email, once you’ve completed both forms.
Windows
Step 1: Open Command Prompt as Administrator.
Step 2: Configure the NTP server:
w32tm /config /manualpeerlist:"ntp.nitc.ac.in" /syncfromflags:manual /reliable:YES /update
Step 3: Restart the time service:
net stop w32time
net start w32time
Step 4: Verify synchronization:
w32tm /query /status
Ubuntu/Debian
Step 1: Install the NTP client:
sudo apt update
sudo apt install ntp -y
Step 2: Configure the NTP server:
sudo nano /etc/ntp.conf
Add the following line:
server ntp.nitc.ac.in iburst
Step 3: Restart the NTP service:
sudo systemctl restart ntp
Step 4: Verify synchronization:
ntpq -p