惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

罗磊的独立博客
Apple Machine Learning Research
Apple Machine Learning Research
The Cloudflare Blog
WordPress大学
WordPress大学
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
博客园 - 叶小钗
博客园 - 聂微东
阮一峰的网络日志
阮一峰的网络日志
腾讯CDC
博客园 - 三生石上(FineUI控件)
V
V2EX
有赞技术团队
有赞技术团队
V
Visual Studio Blog
小众软件
小众软件
Jina AI
Jina AI
酷 壳 – CoolShell
酷 壳 – CoolShell
博客园 - Franky
量子位
T
Tailwind CSS Blog
cs.CV updates on arXiv.org
cs.CV updates on arXiv.org
P
Palo Alto Networks Blog
Cisco Talos Blog
Cisco Talos Blog
I
Intezer
Project Zero
Project Zero
A
Arctic Wolf
P
Privacy International News Feed
V
Vulnerabilities – Threatpost
L
Lohrmann on Cybersecurity
S
Securelist
C
Cybersecurity and Infrastructure Security Agency CISA
C
CXSECURITY Database RSS Feed - CXSecurity.com
T
Tor Project blog
Hacker News - Newest:
Hacker News - Newest: "LLM"
S
Security @ Cisco Blogs
cs.AI updates on arXiv.org
cs.AI updates on arXiv.org
Threat Intelligence Blog | Flashpoint
Threat Intelligence Blog | Flashpoint
Google DeepMind News
Google DeepMind News
N
News and Events Feed by Topic
TaoSecurity Blog
TaoSecurity Blog
L
LINUX DO - 热门话题
G
GRAHAM CLULEY
Help Net Security
Help Net Security
N
News | PayPal Newsroom
W
WeLiveSecurity
G
Google Developers Blog
Microsoft Security Blog
Microsoft Security Blog
Engineering at Meta
Engineering at Meta
MongoDB | Blog
MongoDB | Blog
C
Check Point Blog

博客园 - 2008.5.12

Ubuntu 下重新编译D4X源代码 Wireshark 察看中国电信登陆密码 反恐精英1.6 自用CFG 文件 Virus Total免费在线病毒和恶意软件扫描 国外SEO圣经[PDF] 关于部分网站的专用连接不能转换的可行性操作办法 DiabloII快速启动工具 ver1.0绿色无害版 专用连接转换工具1.03 双色球辅助选号工具测试版本 魔兽争霸中文名称设置工具 智能CS启动程序 System.AccessViolationException 商业网站设计的主要原则 FlashGet 128 线程下载功能扩展 3款好用的多媒体播放器 订餐系统图片界面 Premiere pro 7.0中文版(3)扣像技术 Premiere Pro7.0中文版使用方法(2)画中画、画中移动、缩放 Premiere Pro7.0中文版使用方法(1)
Dos控制台设置IP的方法
2008.5.12 · 2006-06-08 · via 博客园 - 2008.5.12

       最近发现一些电脑应用了策略,使得超级用户耶不能够修改电脑IP。于是就想能不能通过DOS控制台来修改电脑的IP。于是乎我发现了这个DOS命令行。

C:>_
netsh -c interface ip dump > d:\config.txt

         上面的命令将这台电脑上的启用的连接地址列出来了。也就是IP SCRIPT.
那么如何修改IP地址呢。
        上面的命令将IP地址保存为一个TEXT文件。在这个TEXT文件中修改相应的数据,然后将其导入。就完成了修改IP地址的行为。

config.txt content

# ----------------------------------
# 接口 IP 配置
# ----------------------------------
pushd interface ip


# "本地连接 6" 的接口 IP  配置

set address name="本地连接 6" source=static addr=192.168.1.11 mask=255.255.255.0
set address name="本地连接 6" gateway=192.168.1.1 gwmetric=0
set dns name="本地连接 6" source=static addr=none register=PRIMARY
set wins name="本地连接 6" source=static addr=none


popd
# 接口 IP 配置结束

       导入IP地址的DOS 命令如下:
C:>_
netsh -f d:\config.txt config.txt