By default in Windows Server 2012 ethernet adapters have the name Ethernet, which to me is too much to type when configuring network settings on a Windows server from the command line with netsh. You can rename your interfaces using the following commands in Windows:
Get a list of current interfaces on the system:
>netsh int show interface
Admin State State Type Interface Name
-------------------------------------------------------------------------
Enabled Connected Dedicated Ethernet
Rename the interface using the Linux naming convention:
>netsh int set interface name="Ethernet" newname=eth0
No comments:
Post a Comment