重新整理主流品牌摄像机RTSP播放地址。

 摘抄自http://www.itnotepad.cn/Home/Article/num/90.html

一、海康的RTSP地址是最变态的,NVR、IPC不同版本不同地址,害我经常要更新文章

NVR/DVR

[101通道1;201通道2](64路内NVR摄像机通道标识33开始)

海康NVR rtsp://admin:12345@127.0.0.1:554/Streaming/Channels/101

早期旧型号url用ch33

rtsp://admin:12345@127.0.0.1:554/h264/ch33/main/av_stream

rtsp://admin:12345@127.0.0.1:554/h264/ch33/sub/av_stream

[主码流1;子码流2;第三码流(可自定义)]

海康枪机好几种rtsp地址,下列是已知

方式一、

rtsp://admin:12345@127.0.0.1:554/Streaming/Channels/1?transportmode=unicast&profile=Profile_1

方式二、

主码流

rtsp://192.168.31.224:554/Streaming/Channels/101?transportmode=unicast&profile=Profile_1

子码流

rtsp://192.168.31.224:554/Streaming/Channels/102?transportmode=unicast&profile=Profile_2

 

海康NVR接入其他品牌摄像机需onvif配置自定义协议1~16 协议类型rtsp自动端口554资源路径为ip后字串1/h264major

 

 

二、杭州中威 rtsp://admin:12345@127.0.0.1:554/Streaming/Channels/1?transportmode=unicast&profile=Profile_1

 [通道号1开始;主码流0;字码流1]

三、大华rtsp://admin:admin@127.0.0.1:554/cam/realmonitor?channel=1&subtype=0   

四、 英飞拓、通昱、金三立rtsp地址一致格式

[h264major:主码流;h264minor:字码流]

英飞拓rtsp://INFINOVA:INFINOVA@127.0.0.1:554/1/h264major 

通昱 rtsp://admin:12345@127.0.0.1:554/h264major

金三立rtsp://Admin:111111@127.0.0.1:554/h264major

五、

三星: rtsp://admin:4321@127.0.0.1:554/onvif/profile2/media.smp

 

]]>

S5100 telnet配置

配置Console口的密码:

 

配置ssh登陆:

 

SSH服务器端配置

# 在交换机上创建VLAN接口,并为其分配IP地址,作为客户端连接的SSH服务器地址。

system-view

[H3C] interface vlan-interface 1

[H3C-Vlan-interface1] ip address 192.168.0.1 255.255.255.0

[H3C-Vlan-interface1] quit

# 生成RSA密钥对。

[H3C] rsa local-key-pair create

# 设置用户接口上的认证模式为AAA认证。

[H3C] user-interface vty 0 4

[H3C-ui-vty0-4] authentication-mode scheme

# 设置用户接口上支持SSH协议。

[H3C-ui-vty0-4] protocol inbound ssh

[H3C-ui-vty0-4] quit

# 创建用户client001,设置其认证密码为abc,登录协议为SSH,能访问的命令级别为3。

[H3C] local-user client001

[H3C-luser-client001] password simple abc

[H3C-luser-client001] service-type ssh level 3

[H3C-luser-client001] quit

# 指定用户client001的认证方式为password认证

[H3C] ssh user client001 authentication-type password

 


客户端使用putty登陆

在“Protocol options”区域中,选择“Preferred SSH protocol version”参数的值为2

以上使用红色标出的内容按照需要修改

 


 

用SecureCRT或XShell均报这个错误:
The server sent a disconnect packet.
The connection is closed by SSH Server
Current FSM is SSH_Main_SSHProcess (code: 2)
 [H3C]rsa local-key-pair create 

# 配置Console口的认证方式为本地口令认证,且认证口令为明文cdw。

system-view

System View: return to User View with Ctrl+Z.

[Sysname] user-interface aux 0

[Sysname-ui-aux0] authentication-mode password

[Sysname-ui-aux0] set authentication password simple cdw

以上使用红色标出的内容按照需要修改

配置完成后,当用户使用Console口登录交换机时,只有输入正确的口令才能实现成功登录交换机。

]]>

!H3C 5500交换机配置WEB界面管理

最近公司一个比较重要的项目首次用到H3C 5500交换机,之前一直没接触过这次刚好练练手,配置下。

这个型号交换机自带有web管理界面,用起来十分方便而且还是中文的。下面简要介绍下配置过程:

##通过console连上交换机,为默认vlan配置ip。

[H3C]vlan 1
[H3C-Vlan-interface21]ip address 10.0.0.1 255.255.255.0

##启用WEB服务,默认可能已经启动
[H3C]ip http enable

##添加WEB登陆账号
#添加用户ming
[H3C]local-user ming
#设置telnet权限
[H3C-luser-ming]service-type telnet
###配置密码,即可登录
[H3C-luser-ming]password simple ming


##上面配置的账号只有普通权限,需要配置超级管理密码才能对交换进行操作
##设置超级密码为eol
[H3C]super password level 3 cipher eol
##删除密码
[H3C]undo super password
 
访问 http://10.0.0.1 即可配置交换机。
以上为很多网上资料所提供的方法.我不是很明白的是,红色部份,为何设置密码后,又要删除.或者以上提供的方法是否不对,请大家指教,本人没在设备上试过.所以请大家指点.谢谢!

]]>