Skip to content

Instantly share code, notes, and snippets.

View netaviator's full-sized avatar
🎯
Focusing

netaviator

🎯
Focusing
View GitHub Profile
@netaviator
netaviator / nic_lldp_link-state.sh
Created March 1, 2022 19:34
Bash script to disable lldp and enable link-state on intel nics.
@netaviator
netaviator / ntp.level66.network.bat
Created September 26, 2022 06:33
Set NTP Server in Windows via Batch Script.
@echo off
echo Stoppting W32Time Service...
net stop w32time
echo Setting ntp.level66.network as primary NTP Server...
w32tm /config /manualpeerlist:"ntp.level66.network",0x8 /syncfromflags:MANUAL
w32tm /config /reliable:yes
echo Starting W32Time Service...
net start w32time