Đầu tiên tạo ra file
iphome.txt (c:\iphome.txt) để thiết lập IP cho mạng ở nhà tương tự như sau:# ———————————-# Interface IP Configuration# ———————————-pushd interface ip
# Interface IP Configuration for "Local Area Connection"
set address name="Local Area Connection" source=static addr=192.168.1.252 mask=255.255.255.0
set address name="Local Area Connection" gateway=192.168.1.1 gwmetric=0
set dns name="Local Area Connection" source=static addr=192.168.1.1 register=PRIMARY
set wins name="Local Area Connection" source=static addr=none
popd
# End of interface IP configuration
Mở cửa sổ Command Prompt (Window Key + R)- hoặc chọn Start chọn Run và gõ vào lệnh:
netsh -f c:\iphome.txt
Ta thu được kết quả như sau:
Bạn cũng có thể vào
My Network Places--->
View network Connections--> chuột phải vào
Local Area Connection chọn Properties, ở Tab
General--> ở mục
This connection users bạn tìm giao thức
TCP/IP và chọn Properties---> cũng hiện ra bảng như hình trên và thiết lập thông số như bình thường có lâu không cách nào nhanh hơn nhỉ :54:
Cách 2: Nếu “làm biếng” ta có thể tạo ra file
setHomeIp.bat như sau, rồi sau đó chỉ việc click vào nó
@echo offecho Start Interface IP Configuration…
netsh -f c:iphome.txt
echo End of interface IP configuration!
nguồn benhvienmaytinh.vn