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

推荐订阅源

Attack and Defense Labs
Attack and Defense Labs
T
Threatpost
C
Cybersecurity and Infrastructure Security Agency CISA
H
Hackread – Cybersecurity News, Data Breaches, AI and More
I
Intezer
C
Cyber Attacks, Cyber Crime and Cyber Security
The Register - Security
The Register - Security
量子位
Security Latest
Security Latest
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
大猫的无限游戏
大猫的无限游戏
小众软件
小众软件
Exploit-DB.com RSS Feed
Exploit-DB.com RSS Feed
C
CXSECURITY Database RSS Feed - CXSecurity.com
MyScale Blog
MyScale Blog
J
Java Code Geeks
Apple Machine Learning Research
Apple Machine Learning Research
Google DeepMind News
Google DeepMind News
WordPress大学
WordPress大学
Spread Privacy
Spread Privacy
Jina AI
Jina AI
博客园 - 【当耐特】
P
Palo Alto Networks Blog
Last Week in AI
Last Week in AI
SecWiki News
SecWiki News
Threat Intelligence Blog | Flashpoint
Threat Intelligence Blog | Flashpoint
cs.AI updates on arXiv.org
cs.AI updates on arXiv.org
G
GRAHAM CLULEY
宝玉的分享
宝玉的分享
Hacker News - Newest:
Hacker News - Newest: "LLM"
T
The Blog of Author Tim Ferriss
V
Vulnerabilities – Threatpost
有赞技术团队
有赞技术团队
T
Tor Project blog
H
Hacker News: Front Page
A
Arctic Wolf
NISL@THU
NISL@THU
A
About on SuperTechFans
云风的 BLOG
云风的 BLOG
Engineering at Meta
Engineering at Meta
V
V2EX
N
News and Events Feed by Topic
Webroot Blog
Webroot Blog
Know Your Adversary
Know Your Adversary
P
Privacy International News Feed
I
InfoQ
D
Docker
L
LINUX DO - 最新话题
K
KPMG report finds enterprise disconnect between AI and its ROI | CIO
U
Unit 42

博客园 - 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