1.三次握手和四次挥手?
2.什么是OSI七层结构?
3.http vs https?
4.what is Ping?基于什么协议?使用方法?
5.DNS?
6.cookie vs session?
7.LDAP?
LDAP 是一个被广泛支持的、用于存储和查询树形结构的协议,它的价值就是「广泛接受的标准」.

如果使用数据库,你准备让使用服务的人如何接入?1给他开数据库的访问权限?那你是不是还得提供准确的sql查询脚本?2在数据库之上,提供一套web服务?那接入方要严格按照你的api对接咯。这样接入方更换认证服务的时候,很可能是不统一的api,想想都麻烦。认证服务是LDAP的话,接入方的平台确认了之后,接入调用的api就是确定的,只要更换服务的地址,目录的信息就可以了,是不是简单很多。

当你需要储存大量的数据,而且数据不是经常更改,需要很快速的查找的话。用LDAP。

The main idea of LDAP Server is to keep in one place all the information of a user (contact details, login, password, permissions), so that it is easier to maintain by network administrators. For example you can: 1. use the same login/passwd to login on an Intranet and on your local computer. 2. give specific permissions to a group of user. For example some could access some specific page of your Intranet, or some specific directories on a shared drive. 3. get all the contact details of the people in a company on Outlook for example.

8.all about http
9.TCP vs UDP
10. socket
11.Kerberos、Radius
12.load balance
13.给出邮件头分析
14.

tomorrow to do list:
1.一早把简历英语过一遍,完整的过一遍,包括需要准备的东西
2.azure documents
3.网络和相关的面经认真答完并且给人讲解
4.troubleshooting和behavior questions

随机推荐

  1. Populate screen data automatically

    field zz_test-uname. module populate_record on chain-request. module populate_record input. ztlo_tes ...

  2. 多线程同步synchornized、volatile、Atomic、CountDownLatch示例

    synchronized关键字 锁对象.synchronized(this)和synchronized方法都是锁当前对象. import java.util.concurrent.TimeUnit; ...

  3. navicat使用ssh登录mysql报错:expected key exchange group packet from server

    转载自:https://blog.csdn.net/enweitech/article/details/80677374 解决方法: vim /etc/ssh/sshd_config shift+g ...

  4. 把多个字符串里面的项写到不同的对象中,然后在push到一个数组中

    otherUserNames: "甲,乙,丙,丁"otherUserIds: "10008750,10008711,10003348,10008747" oth ...

  5. python 将mysql数据库中的int类型修改为NULL 报1366错误,解决办法

    gt.run_sql()是用pymysql 封装的类 distribution_sort_id type: int目的:将此字段值全部修改为NULL g=2gt.run_sql("updat ...

  6. spring mvc 500错误Allocate exception for servlet AppService javax.naming.NamingException: Cannot create resource instance 竟是@Resource的原因

    头几天已经测试的完毕了,换了个目录出现这个问题 严重: Allocate exception for servlet AppService javax.naming.NamingException: ...

  7. docker 删除所有退出的容器

    方法一: #显示所有的容器,过滤出Exited状态的容器,取出这些容器的ID, sudo docker ps -a|grep Exited|awk '{print $1}' #查询所有的容器,过滤出E ...

  8. python ftp 传输文件

    # -*- coding: utf-8 -*- # 本地bytes 数据上报服务器同时创建文件from ftplib import FTP import time, _io from constant ...

  9. idea在debugger模式下无法启动,但是在run模式下可以启动的问题

    debugger模式下,启动idea,总是报内存溢出异常, Error creating bean with name 'sysRoleUserMapper' defined in URL [jar: ...

  10. 静态链接库与动态链接库----C/C++

    http://blog.csdn.net/freestyle4568world/article/details/49817799