Gå til innhold

netsh legge til flere dns adresser


Anbefalte innlegg

Hei

 

prøver med med netsh kommandoen og prøver meg med følgende bat fil:

@echo off
echo "Setter statisk ip adresse"
echo "ip 10.0.0.50"
echo "subnett: /24"
echo "Gateway: 10.0.0.138"
echo "dns 10.0.0.138/212.33.133.33"

netsh interface ip set address "Lokal tilkobling 2" static 10.0.0.50 255.255.255.0
netsh interface ip set dns "Lokal tilkobling 2" static 10.0.0.138 
netsh interface ip add dns "Lokal tilkobling 2" static 212.33.133.33
netsh interface ip add address "Lokal tilkobling 2" gateway=10.0.0.138 gwmetric=0


pause

 

MEn det kommer parameter er feil og dns blir satt til 212.33.133.33

Noen som ser hva jeg har gjort galt??

Lenke til kommentar
Videoannonse
Annonse

Hei

 

Fjern "static" fra add dns kommandoen.:

@echo off
echo "Setter statisk ip adresse"
echo "ip 10.0.0.50"
echo "subnett: /24"
echo "Gateway: 10.0.0.138"
echo "dns 10.0.0.138/212.33.133.33"

netsh interface ip set address "Lokal tilkobling 2" static 10.0.0.50 255.255.255.0
netsh interface ip set dns "Lokal tilkobling 2" static 10.0.0.138
netsh interface ip add dns "Lokal tilkobling 2" 212.33.133.33
netsh interface ip add address "Lokal tilkobling 2" gateway=10.0.0.138 gwmetric=0

pause

 

Så bør det fungere bedre.

 

EDIT:

Det er veldig greit å kunne bruke spørsmålstegn i kommandoen for å finne informasjon:

C:\>netsh interface ip add dns ?

 

Usage: add dns [name=]<string> [addr=]<IP address> [[index=]<integer>]

 

Parameters:

 

Tag Value

name - The name of the interface where DNS servers are added.

addr - The IP address for the DNS server you are adding.

index - Specifies the index (preference) for the specified

DNS server address.

 

Remarks: Adds a new DNS server IP address to the statically-configured list.

By default, the DNS server is added to the end of the list. If an

index is specified, the DNS server will be placed in that position

in the list, with other servers being moved down to make room.

If DNS servers were previously obtained through DHCP, the new

address will replace the old list.

 

Examples:

 

add dns "Local Area Connection" 10.0.0.1

add dns "Local Area Connection" 10.0.0.3 index=2

 

 

C:\>

Endret av kakkle
Lenke til kommentar

Opprett en konto eller logg inn for å kommentere

Du må være et medlem for å kunne skrive en kommentar

Opprett konto

Det er enkelt å melde seg inn for å starte en ny konto!

Start en konto

Logg inn

Har du allerede en konto? Logg inn her.

Logg inn nå
  • Hvem er aktive   0 medlemmer

    • Ingen innloggede medlemmer aktive
×
×
  • Opprett ny...