Skip to main content

网络信息服务简称

网络信息服务简称 NISNetwork Information Service),时又译为网络数据服务协议,亦即一般简称之“黄页”YPYellow Pages),最早由升阳公司开发出来,为一套用来管理计算机网络中所有与计算机系统管理相关之设置文件,如用户账号、密码、主机名称或组群等的主从式目录服务协议
由于 NIS 推出时的旧有名字 "Yellow page"“黄页”已为英国电信集团注册为该公司商业电话名录的商标,故升阳将之改名为 NIS,然而所有的指令及函数命名仍以原缩写 "yp" 为起首。
在许多环境下,已有其他目录服务比 NIS 更先进、更安全,例如 LDAP 就已经逐渐取代 NIS。

NIS 相关指令

  • ypcat
  • ypmatch
  • ypwhich
  • ypclnt
  • yppasswd
  • ypset
  • ypmake
  • ypinit
  • yppush
  • ypserve

Comments

Popular posts from this blog

CKA Simulator Kubernetes 1.22

  https://killer.sh Pre Setup Once you've gained access to your terminal it might be wise to spend ~1 minute to setup your environment. You could set these: alias k = kubectl                         # will already be pre-configured export do = "--dry-run=client -o yaml"     # k get pod x $do export now = "--force --grace-period 0"   # k delete pod x $now Vim To make vim use 2 spaces for a tab edit ~/.vimrc to contain: set tabstop=2 set expandtab set shiftwidth=2 More setup suggestions are in the tips section .     Question 1 | Contexts Task weight: 1%   You have access to multiple clusters from your main terminal through kubectl contexts. Write all those context names into /opt/course/1/contexts . Next write a command to display the current context into /opt/course/1/context_default_kubectl.sh , the command should use kubectl . Finally write a second command doing the same thing into ...

OWASP Top 10 Threats and Mitigations Exam - Single Select

Last updated 4 Aug 11 Course Title: OWASP Top 10 Threats and Mitigation Exam Questions - Single Select 1) Which of the following consequences is most likely to occur due to an injection attack? Spoofing Cross-site request forgery Denial of service   Correct Insecure direct object references 2) Your application is created using a language that does not support a clear distinction between code and data. Which vulnerability is most likely to occur in your application? Injection   Correct Insecure direct object references Failure to restrict URL access Insufficient transport layer protection 3) Which of the following scenarios is most likely to cause an injection attack? Unvalidated input is embedded in an instruction stream.   Correct Unvalidated input can be distinguished from valid instructions. A Web application does not validate a client’s access to a resource. A Web action performs an operation on behalf of the user without checkin...