LINUX的应用程序控制文件,如.conf是什么语言编写的?下附举例.
rewrite_calling_station_id{if(Calling-Station-Id=~/([0-9a-f]{2})[-:]?([0-9a-f]{2})[-:...
rewrite_calling_station_id {
if (Calling-Station-Id =~ /([0-9a-f]{2})[-:]?([0-9a-f]{2})[-:.]?([0-9a-f]{2})[-:]?
([0-9a-f]{2})[-:.]?([0-9a-f]{2})[-:]?([0-9a-f]{2})/i) {
update request {
Calling-Station-Id := "%{tolower:%{1}-%{2}-%{3}-%{4}-%{5}-%{6}}"
}
}
else {
noop
}
}
*****************************************************************************
authorize {
preprocess
# if cleaning up the Calling-Station-Id...
rewrite_calling_station_id
# now check against the authorized_macs file
authorized_macs
if (!ok) {
reject
}
else {
# accept
update control {
Auth-Type := Accept
}
}
} 展开
if (Calling-Station-Id =~ /([0-9a-f]{2})[-:]?([0-9a-f]{2})[-:.]?([0-9a-f]{2})[-:]?
([0-9a-f]{2})[-:.]?([0-9a-f]{2})[-:]?([0-9a-f]{2})/i) {
update request {
Calling-Station-Id := "%{tolower:%{1}-%{2}-%{3}-%{4}-%{5}-%{6}}"
}
}
else {
noop
}
}
*****************************************************************************
authorize {
preprocess
# if cleaning up the Calling-Station-Id...
rewrite_calling_station_id
# now check against the authorized_macs file
authorized_macs
if (!ok) {
reject
}
else {
# accept
update control {
Auth-Type := Accept
}
}
} 展开
展开全部
c/c++写的
追问
C还是C++
追答
Linux内核是用C语言写的,中间嵌入了部分汇编代码,底层的部分代码完全是汇编语言(如启动代码),图形环境中有采用perl等语言的,种类较多。你说的应该是C++
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
就是 Shell 语言写的
更多追问追答
追问
我看过BASH SHELL 没见过这种例子
Calling-Station-Id =~ /([0-9a-f]{2})[-:]?([0-9a-f]{2})[-:.]?([0-9a-f]{2})[-:]?................
追答
这是用了正则表达式而已
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询