Powershell-获取DHCP地址租用信息

需求:业务需要获取现阶段DHCP服务器所有地址租用信息。

1.首先查看DHCP相关帮助信息:
Powershell-获取DHCP地址租用信息
2.确定执行命令并获取相关帮助信息:help Get-DhcpServerv4Scope

名称 Get-DhcpServerv4Scope

语法 Get-DhcpServerv4Scope [[-ScopeId] <ipaddress[]>] [-ComputerName <string>] [-CimSession <CimSession[]>] [-ThrottleLimit <int>] [-AsJob] [<CommonParameters>]
Powershell-获取DHCP地址租用信息
3.查看某一作用域下的地址租约信息:

Get-DhcpServerv4Lease -ComputerName 10.10.32.26 -ScopeId 10.10.33.0
Powershell-获取DHCP地址租用信息
4.查询所有作用域下的租约信息:

Get-DhcpServerv4Scope | Get-DhcpServerv4Lease
Powershell-获取DHCP地址租用信息
5.将查询到的信息导出到CSV文件:
Powershell-获取DHCP地址租用信息
6.按照需求筛选所需字段,为防止到处字符错误(可指定字符),并导出CSV文件:
Get-DhcpServerv4Scope |Get-DhcpServerv4Lease |Select-Object IPAddress,AddressState,ClientId,HostName,LeaseExpiryTime |Export-Csv C:\DHCPInfo.csv -Encoding UTF8 -NoTypeInformation
Powershell-获取DHCP地址租用信息

操作完成。

Get-Dhcp*补充:

Get- Dhcp Serverv4Binding 获取绑定了DHCP服务器服务的计算机上的IPv4接口。

Get- Dhcp Serverv4Class 从DHCP服务器服务中检索IPv4供应商或用户类别。

Get- Dhcp Serverv4DnsSetting 获取DHCP服务器服务上为特定范围,预留或服务器级别配置的DNS设置。

Get- Dhcp Serverv4ExclusionRange 返回从指定范围ID中排除的IPv4地址范围。

Get- Dhcp Serverv4Failover 获取特定故障转移关系名称在DHCP服务器服务上配置的故障转移关系。

Get- Dhcp Serverv4Filter 获取允许列表中的MAC地址或DHCP服务器服务上的拒绝列表。

Get- Dhcp Serverv4FilterList 获取允许过滤器列表的启用状态,并拒绝在DHCP服务器服务上设置的过滤器列表。

Get- Dhcp Serverv4FreeIPAddress 从指定范围获取免费的IPv4地址。

Get- Dhcp Serverv4Lease 从DHCP服务器服务获取一个或多个租约记录。

Get- Dhcp Serverv4MulticastExclusionRange 检索指定多播作用域的排除范围。

Get- Dhcp Serverv4MulticastLease 检索指定作用域名称的多播租约。

Get- Dhcp Serverv4MulticastScope 获取多播作用域对象。

Get- Dhcp Serverv4MulticastScopeStatistics 获取多播作用域统计信息。

Get- Dhcp Serverv4OptionDefinition 获取指定选项ID的DHCPv4选项定义。

Get- Dhcp Serverv4OptionValue 在服务器,作用域或预留级别返回IPv4选项的IPv4选项值。

Get- Dhcp Serverv4Policy 获取服务器级别或作用域级别的策略。
Get- Dhcp Serverv4PolicyIPRange 从指定范围的策略中获取IP地址范围。

Get- Dhcp Serverv4Reservation 获取IP地址或客户端ID的IPv4保留。

Get- Dhcp Serverv4Scope 返回指定作用域的IPv4作用域配置。

Get- Dhcp Serverv4ScopeStatistics 获取与为DHCP服务器服务指定的IPv4范围ID对应的IPv4范围统计信息。

Get- Dhcp Serverv4Statistics 获取IPv4的DHCP服务器服务统计信息。

Get- Dhcp Serverv4Superscope 获取指定超类的配置。

Get- Dhcp Serverv4SuperscopeStatistics 返回超级用户的统计信息。

Get-DhcpServerv4Lease基本实例:

Eg1:获取来自DHCPv4作用域10.10.34.0的所有活动IPv4地址租用。

Get-DhcpServerv4Lease -ComputerName dhcpserver(FQDN&IP) -ScopeId 10.10.34.0
Powershell-获取DHCP地址租用信息
Eg2:获取IPv4地址10.10. 34.10和10.10. 33.10的IP地址租用信息。
Get-DhcpServerv4Lease -ComputerName dhcpserver(FQDN&IP) -IPAddress 10.10.34.11, 10.10.33.1
Powershell-获取DHCP地址租用信息
Eg3:从DHCPv4示例10.10. 34.0中获取所有不良或拒绝的IPv4地址租用。
Get-DhcpServerv4Lease -ComputerName dhcpserver(FQDN&IP) -ScopeId 10.10.34.0 -BadLeases
Powershell-获取DHCP地址租用信息
Eg4:从DHCPv4范围10.10.34.0中获取所有类型的IPv4地址租约,包括活动,已拒绝和过期。
Get-DhcpServerv4Lease -ComputerName dhcpserver(FQDN&IP) -ScopeId 10.10.34.0 -AllLeases
Powershell-获取DHCP地址租用信息
Eg5:获取名为dhcpserver(FQDN&IP)的计算机上运行的DHCP服务器服务上的所有作用域的所有活动IP地址租约。Get-DhcpServerv4Scope cmdlet返回作用域对象,并将对象传递给此cmdlet,该cmdlet返回所有作用域中的活动地址租约对象。
Get-DhcpServerv4Scope -ComputerName dhcpserver(FQDN&IP) | Get-DhcpServerv4Lease -ComputerName dhcpserver(FQDN&IP)
Powershell-获取DHCP地址租用信息

转载于:https://blog.51cto.com/fandecorator/2319136

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/389170.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

python 交互式流程图_使用Python创建漂亮的交互式和弦图

python 交互式流程图Python中的数据可视化 (Data Visualization in Python) R vs Python is a constant tussle when it comes to what is the best language, according to data scientists. Though each language has it’s strengths, R, in my opinion has one cutting-edg…

机器学习解决什么问题_机器学习帮助解决水危机

机器学习解决什么问题According to Water.org and Lifewater International, out of 57 million people in Tanzania, 25 million do not have access to safe water. Women and children must travel each day multiple times to gather water when the safety of that water …

Viewport3D 类Viewport3D 类Viewport3D 类

.NET Framework 类库Viewport3D 类更新&#xff1a;2007 年 11 月为三维可视内容提供呈现图面。命名空间&#xff1a; System.Windows.Controls程序集&#xff1a; PresentationFramework&#xff08;在 PresentationFramework.dll 中&#xff09;用于 XAML 的 XMLNS&#xf…

网络浏览器如何工作

Behind the scenes of modern Web Browsers现代Web浏览器的幕后花絮 The Web Browser is inarguably the most common portal for users to access the web. The advancement of the web browsers (through the series of history) has led many traditional “thick clients”…

让自己的头脑极度开放

为什么80%的码农都做不了架构师&#xff1f;>>> 一. 头脑封闭和头脑开放 头脑封闭 你是否经常有这样的经历&#xff0c;在一次会议或者在一次小组讨论时&#xff0c;当你提出一个观点而被别人否定时&#xff0c;你非常急迫地去反驳别人&#xff0c;从而捍卫自己的尊…

简介DOTNET 编译原理 简介DOTNET 编译原理 简介DOTNET 编译原理

简介DOTNET 编译原理 相信大家都使用过 Dotnet &#xff0c;可能还有不少高手。不过我还要讲讲Dotnet的基础知识&#xff0c;Dotnet的编译原理。 Dotnet是一种建立在虚拟机上执行的语言&#xff0c;它直接生成 MSIL 的中间语言&#xff0c;再由DotNet编译器 JIT 解释映象为本机…

RecyclerView详细了解

关于RecyclerView大家都不陌生了&#xff0c;它的使用也越来越受欢迎&#xff0c;现在总体了解一下RecyclerView的作用&#xff0c;为什么会有RecyclerView呢&#xff0c;我用ListView也能干所有的事情啊&#xff0c;尺有所短&#xff0c;寸有所长&#xff0c;先来看看Recycler…

案例与案例之间的非常规排版

In 1929 the Cond Nast publishing group brought Russian-born Mehemed Fehmy Agha—who had been working for the German edition of Vogue magazine—to America as art director for House & Garden, Vanity Fair, and the senior edition of Vogue.1929年&#xff0c…

熊猫分发_熊猫新手:第二部分

熊猫分发This article is a continuation of a previous article which kick-started the journey to learning Python for data analysis. You can check out the previous article here: Pandas for Newbies: An Introduction Part I.本文是上一篇文章的延续&#xff0c;该文…

浅析微信支付:申请退款、退款回调接口、查询退款

本文是【浅析微信支付】系列文章的第八篇&#xff0c;主要讲解商户如何处理微信申请退款、退款回调、查询退款接口&#xff0c;其中有一些坑的地方&#xff0c;会着重强调。 浅析微信支付系列已经更新七篇了哟&#xff5e;&#xff0c;没有看过的朋友们可以看一下哦。 浅析微信…

view工作原理-计算视图大小的过程(onMeasure)

view的视图有两种情况&#xff1a; 内容型视图&#xff1a;由视图的内容决定其大小。图形型视图&#xff1a;父视图为view动态调整大小。 ### measure的本质 把视图布局使用的“相对值”转化成具体值的过程&#xff0c;即把WRAP_CONTENT,MATCH_PARENT转化为具体的值。 measur…

基于Redis实现分布式锁实战

背景在很多互联网产品应用中&#xff0c;有些场景需要加锁处理&#xff0c;比如&#xff1a;秒杀&#xff0c;全局递增ID&#xff0c;楼层生成等等。大部分的解决方案是基于DB实现的&#xff0c;Redis为单进程单线程模式&#xff0c;采用队列模式将并发访问变成串行访问&#x…

数据分析 绩效_如何在绩效改善中使用数据分析

数据分析 绩效Imagine you need to do a bank transaction, but the website is so slow. The page takes so much time to load, all you can see is a blue circle.想象您需要进行银行交易&#xff0c;但是网站是如此缓慢。 该页面需要花费很多时间来加载&#xff0c;您只能看…

隐私策略_隐私图标

隐私策略During its 2020 Worldwide Developers Conference, Apple spent time on one of today’s hottest topics — privacy. During the past couple of years, Apple has been rolling out various public campaigns aiming to position itself as a company that respect…

您一直在寻找5+个简单的一线工具来提升Python可视化效果

Insightful and aesthetic visualizations don’t have to be a pain to create. This article will prevent 5 simple one-liners you can add to your code to increase its style and informational value.富有洞察力和美学的可视化不必费心创建。 本文将防止您添加到代码中…

figma 安装插件_彩色滤光片Figma插件,用于色盲

figma 安装插件So as a UX Designer, it is important to design with disabilities in mind. One of these is color blindness. It is important to make sure important information on your product is legible to everyone. This is why I like using this tool:因此&…

产品观念:更好的捕鼠器_故事很重要:为什么您需要成为更好的讲故事的人

产品观念&#xff1a;更好的捕鼠器重点 (Top highlight)Telling a compelling story helps you get your point across effectively else you get lost in translation.讲一个引人入胜的故事可以帮助您有效地传达观点&#xff0c;否则您会迷失在翻译中。 Great stories happen…

7月15号day7总结

今天复习了springMVC的框架搭建。 思维导图&#xff1a; 转载于:https://www.cnblogs.com/kangy123/p/9315919.html

设计师的10种范式转变

For $250, a business can pay a graphic designer to create a logo for their business. Or, for $10,000 a business can hire a graphic designer to form a design strategy that contextually places the business’s branding in a stronghold against the market it’s…

面向Tableau开发人员的Python简要介绍(第2部分)

用PYTHON探索数据 (EXPLORING DATA WITH PYTHON) And we’re back! Let’s pick up where we left off in the first article of this series and use the visual we built there as a starting point.我们回来了&#xff01; 让我们从在本系列的第一篇文章中停下来的地方开始&…