netsh problem

  • Thread starter Thread starter Agostino Sclauzero
  • Start date Start date
A

Agostino Sclauzero

Issuing this:
netsh interface ip>set address lan static 81.200.132.131 255.255.255.240
81.200.
132.128
I get a generic syntax error, but the syntax seems right (lan is the name of
my connection).
can anyone help me with this mistake? thanks in advance
Agostino
 
Agostino Sclauzero said:
Issuing this:
netsh interface ip>set address lan static 81.200.132.131 255.255.255.240
81.200.132.128
I get a generic syntax error, but the syntax seems right (lan is the name
of my connection).
can anyone help me with this mistake? thanks in advance
Agostino

Try this explicit command. You can run it from the Command Prompt.
netsh interface ip set address name=LAN source=static
addr=81.200.132.131 mask=255.255.255.240
gateway=81.200.132.128
 
Back
Top