【发布时间】:2021-08-23 03:40:30
【问题描述】:
我在 DHCP 租用文件中有以下信息
lease 201.249.14.226 {
starts epoch 1586469086; # Thu Apr 09 17:51:26 2020
ends epoch 1587765086; # Fri Apr 24 17:51:26 2020
tstp epoch 1587765086; # Fri Apr 24 17:51:26 2020
cltt epoch 1586469086; # Thu Apr 09 17:51:26 2020
binding state free;
next binding state free;
rewind binding state free;
hardware ethernet f8:d1:11:50:1c:2b;
set vendor-class-identifier = "MSFT 5.0";
client-hostname "TL-MR3420";
}
lease 201.249.11.68 {
starts epoch 1586469229; # Thu Apr 09 17:53:49 2020
ends epoch 1587765229; # Fri Apr 24 17:53:49 2020
tstp epoch 1587765229; # Fri Apr 24 17:53:49 2020
cltt epoch 1586469440; # Thu Apr 09 17:57:20 2020
binding state active;
next binding state free;
rewind binding state free;
hardware ethernet 34:4d:ea:fa:9d:10;
option agent.circuit-id "mil-bras-06--172.26.22.237 trunk 0/1/0/2:427.32";
client-hostname "ZTE";
}
lease 201.249.11.199 {
starts epoch 1586469229; # Thu Apr 09 17:53:49 2020
ends epoch 1587765229; # Fri Apr 24 17:53:49 2020
tstp epoch 1587765229; # Fri Apr 24 17:53:49 2020
cltt epoch 1586469440; # Thu Apr 09 17:57:20 2020
binding state active;
next binding state free;
rewind binding state free;
hardware ethernet 34:4d:ea:fa:9d:10;
option agent.circuit-id "cnt-bras-07--172.26.220.225 trunk 0/1/0/2:427.20";
client-hostname "ZTE";
}
是一个缩减样本
我需要在应用Python re后得到 当且仅当“绑定状态激活”;
下一个:
lease 201.249.11.68
binding state active;
hardware ethernet 34: 4d: ea: fa: 9d: 10;
option agent.circuit-id "mil-bras-06--172.26.22.237 trunk 0/1/0/2: 427.32";
client-hostname "ZTE";
lease 201.249.11.199
binding state active;
hardware ethernet 34: 4d: ea: fa: 9d: 10;
option agent.circuit-id "cnt-bras-07--172.26.220.225 trunk 0/1/0/2: 427.20";
client-hostname "ZTE";
不强制使用python模块(正则表达式) 不知道有没有更好的想法或者替代方案
我正在这样做......
import re
with open('/var/lib/dhcp.leases', 'r') as f:
#pattern = re.compile(r'((option agent.circuit-id)\s"(\w{3}-\w{4}-\d{2}\W{2}))')
#pattern = re.compile(r'(\W{2}((\d{0,3}).(\d{0,3}).(\d{0,3}).(\d{0,3})\s\w{5}\s[0-9/]{7}:\d{1,3}.\d{1,3}"))')(
#pattern = re.compile(r'(lease [0-9.]+)')
#pattern = re.compile(r'binding state active;')
#pattern = re.compile(r'(hardware ethernet).(\w{2}:\w{2}:\w{2}:\w{2}:\w{2}:\w{2})')
#pattern = re.compile(r'(option agent.circuit-id)\s["]+(\w{3}-\w{4}-\d{2}\W{2}\d{1,3}[.]\d{1,3}[.]\d{1,3}.*?)')
contents = f.read()
matches = pattern.finditer(contents)
for match in matches:
print(match)
我有几个单独的模式来查找结果 但我不知道如何将它们放在一起满足条件
当且仅当“绑定状态激活;”
【问题讨论】:
标签: python python-3.8 python-re