导航:首页 > 程序命令 > 中文配置命令

中文配置命令

发布时间:2022-09-13 21:05:40

1. 谁能给套思科路由的基本配置命令(最好是带中文解释的),

Cisco路由配置语句汇总
启动接口,分配IP地址:
router>
router> enable
router#
router# configure terminal
router(config)#
router(config)# interface Type Port
router(config-if)# no shutdown
router(config-if)# ip address IP-Address Subnet-Mask
router(config-if)# ^z

配置RIP路由协议:30秒更新一次
router(config)# router rip
router(config-if)# network Network-Number <--通告标准A,B,C类网-->
router(config-if)# ^z

配置IGRP路由协议:90秒更新一次
router(config)# router igrp AS-Number <-- AS-Number范围1~65535-->
router(config-if)# network Network-Number <--通告标准A,B,C类网-->
router(config-if)# ^z

配置Novell IPX路由协议:Novell RIP 60秒更新一次
router(config)# ipx routing [node address]
router(config)# ipx maximum-paths Paths <--设置负载平衡,范围1~512-->
router(config)# interface Type Port
router(config-if)# ipx network Network-Number [encapsulation encapsulation-type] [secondary] <--通告标准A,B,C类网-->
router(config-if)# ^z

配置DDR:
router(config)# dialer-list Group-Number protocol Protocol-Type permit [list ACL-Number]
router(config)# interface bri 0
router(config-if)# dialer-group Group-Number
router(config-if)# dialer map Protocol-Type Next-Hop-Address name Hostname Telphone-Number
router(config-if)# ^z

配置ISDN:
router(config)# isdnth-typeth-Type <--配置ISDN交换机类型,中国使用basic-net3-->
router(config-if)# ^z

配置Frame Relay:
router(config-if)# encapsulation frame-relay [cisco | ietf ]
router(config-if)# frame-relay lmi-type [ansi | cisco | q933a ]
router(config-if)# bandwidth kilobits
router(config-if)# frame-relay invers-arp [ Protocol ] [dlci ]

<--配置静态Invers ARP表:
router(config)# frame-relay Protocol Protocol-Address DLCI [ Broadcast ] [ ietf | cisco ] [ payload-compress | packet-by-packet ]
-->
<--设置Keepalive间隔:
router(config-if)# keepalive Number
-->
<--为本地接口指定DLCI:
router(config-if)# frame-lelay local-dlci Number
-->
<--子接口配置:
router(config-if)# interface Type Port.Subininterface-Number [ multipoint | point-to-point ]
router(config-subif)# ip unnumbered Interface
router(config-subif)# frame-lelay local-dlci Number
-->
router(config-if)# ^z

配置标准ACL:
router(config)# access-list Access-List-Number [ permit | deny ] source [ source-mask ] <-- Access-List-Number 范围:1~99标准ACL;100~199扩展ACL;800~899标准IPX ACL;900~999扩展IPX ACL;1000~1099 IPX SAP ACL;600~699Apple Talk ACL-->
router(config)# interface Type Port
router(config-if)# ip access-group Access-List-Number [ in | out ]
router(config-if)# ^z

配置扩展ACL:
router(config)# access-list Access-List-Number [ permit | deny ] [ Protocol | Protocol-Number ] source source-wildcard [ Source-Port ] destination destination-wildcard [ Destination-Port ] [ established ]
router(config)# interface Type Port
router(config-if)# ip access-group Access-List-Number [ in | out ]
router(config-if)# ^z

配置命名ACL:
router(config)# ip access-list [ standard | extended ] ACL-Name
router(config [ std- | ext- ] nacl)# [ permit | deny ] [ IP-Access-List-Test-Conditions ]
router(config [ std- | ext- ] nacl)# no [ permit | deny ] [ IP-Access-List-Test-Conditions ]
router(config [ std- | ext- ] nacl)# ^z
router(config)# interface Type Port
router(config-if)# ip access-group [ACL-Name | 1~199 ] [ in | out ]
router(config-if)# ^z
配置DCE时钟:
router# show controllers Type Port <--确定DCE接口-->
router(confin-if)# clock rate 64000 <--进入DCE接口设置时钟速率-->
router(config-if)# ^z

配置PPP协议:
router(config)# username Name password Set-Password-Here <--验证方建立数据库-->
router(config)# interface Type Port
router(config-if)# encapsulation ppp <--启动PPP协议-->
router(config-if)# ppp outhentication [ chap | chap pap | pap chap | pap ] <--选择PPP认证-->
router(config-if)# ppp pap sent-username Name password Password <--发送验证信息-->
router(config-if)# ^z

PAP单向认证配置实例:
验证方:
router-server(config)# username Client password 12345 <--验证方建立数据库-->
router-server(config)# interface serial 0
router-server(config-if)# encapsulation ppp
router-server(config-if)# ppp authentication pap <--选择使用PAP实现PPP认证-->
router-server(config-if)# ^z
被验证方:
router-client(config-if)# encapsulation ppp
router-client(config-if)# ppp pap sent-username Client password 12345 <--发送验证信息-->
router-client(config-if)# ^z
PAP双向认证配置实例:
路由器 A:
routerA(config)# username B password 12345
routerA(config)# interface serial 0
routerA(config-if)# encapsulation ppp
routerA(config-if)# ppp authentication pap
routerA(config-if)# ppp pap sent-username A password 54321
routerA(config-if)# ^z
路由器 B:
routerB(config)# username A password 54321
routerB(config)# interface serial 1
routerB(config-if)# encapsulation ppp
routerB(config-if)# ppp authentication pap
routerB(config-if)# ppp pap sent-username B password 12345
routerB(config-if)# ^z
CHAP单向认证配置实例:
验证方:
router-server(config)# username router-client password 12345
router-server(config)# interface serial 0
router-server(config-if)# encapsulation ppp
router-server(config-if)# ppp authentication chap
router-server(config-if)# ^z
被验证方:
router-client(config-if)# encapsulation ppp
router-client(config-if)# ppp authentication chap
router-client(config-if)# ppp chap hostname router-client
router-client(config-if)# ppp chap password 12345
router-client(config-if)# ^z

CHAP双向认证配置实例:
路由器 A:
routerA(config)# username routerB password 12345
routerA(config)# interface serial 0
routerA(config-if)# encapsulation ppp
routerA(config-if)# ppp authentication chap
routerA(config-if)# ppp chap hostname routerA
routerA(config-if)# ppp chap password 54321
routerA(config-if)# ^z
路由器 B:
routerB(config)# username routerA password 54321
routerB(config)# interface serial 1
routerB(config-if)# encapsulation ppp
routerB(config-if)# ppp authentication chap
routerB(config-if)# ppp chap hostname routerB
routerB(config-if)# ppp chap password 12345
routerB(config-if)# ^z
Telnet使用:
routerA# terminal monitor <--可以传回在远端主机执行Debug命令的结果-->
routerA# telnet IP-Address [ Router-Name ] <--Telnet到指定的地址或名字的主机-->
routerB# [ exit | logout ] <--退出Telnet-->
routerB# ++<6>再按 <--挂起Telnet-->
routerA# show sessions <--显示当前所有Telnet的信息,包括Connect-Number -->
routerA# Connect-Number <--返回指定的Telnet连接-->
routerA# disconnect IP-Address [ Router-Name ] <--断开指定地址或名字的主机的连接-->
routerA# show user <--显示Telnet到本机的连接信息-->
routerA# clear line [ 0 | 1 | 2 | 3 | 4 ] <--断开指定Telnet到本机的连接-->
禁止任何Telnet到本机:
router(config)# line vty 0 4
router(config-line)# access-class ACL-Number
router(config)# ^z

设置主机名:
router(config)# hostname Set-Hostname
router(config)# ^z
router(config)# ^z
设置用户模式密码:
router(config)# line console 0
router(config-line)# login
router(config-line)# password Set-Password
router(config-line)# ^z
设置Telnet密码:
router(config)# line vty 0 4
router(config-line)# login
router(config-line)# password Set-Password
router(config-line)# ^z

设置特权模式密码:
router(config)# enable password Set-Password <--不加密的密码,明码-->
router(config)# enable secret Set-Password <--经过加密的密码-->
router(config)# ^z
给所有密码加密:
router(config)# service password-ancryption Set-Password-Here
router(config)# no service password-ancryption <--取消加密-->
router(config)# ^z

设置登录Banner:
router(config)# banner motd 分隔符 Set-Banner-InFORMation-Here 分隔符 <--前后分隔符一定要一致-->

设置接口的描述信息:
router(config-if)# description Set-Port-InFORMation-Here
router(config)# ^z

CDP的控制:
router(config-if)# cdp enable <--在指定端口启用CDP,缺省-->
router(config-if)# no cdp enable <--在指定端口关闭CDP-->
router(config)# cdp run <--使所有端口启用CDP-->
router(config)# no cdp run <--使所有端口关闭CDP-->

Ping的使用:
router# ping IP-Address
router# ping <--扩展Ping命令-->
Protocol [ip]:[ Protocol-Type ] <--选择协议类型-->
Target IP address:IP-Address <--输入测试地址-->
Repeat count [5]: <--选择发送的ICMP包数量-->
Datagram size [100]: <--选择每个包的大小-->
Timeout in seconds [2]: <--设置每个包的超时时间-->
Extended commands [n]:y <--使用扩展Ping命令-->
Sweep range of sizes [n]:
Tracke的使用:
router# trace IP-Address [ Host-Name ]

为Cisco 4000路由器指定媒体类型:
router(config-if)# media-type 10baset <--使AUI(默认)失效,改为使用RJ-45-->
router(config-if)# ^z

更改路由器启动顺序:
router(config)# boot system flash IOS-FileName
router(config)# boot system tftp IOS-FileName TFTP-IP-Address
router(config)# boot system rom
router(config)# ^z

修改寄存器数值:
router(config)# config-register value <--Cisco出厂默认value=0x2102,value范围:0x2100(进入ROM监视器),0x2101(使系统从ROM启动),0x2102~0x210F(使系统从NVRAM启动)。0x1=0x2101,从最小位开始改变-->

在ROM监视器中更改寄存器数值:
> o/r value

路由器密码的恢复:
冷关机,然后再开机并在60秒内按< Ctrl>+进入ROM监视器模式
> o/r 0x2142 <--25xx型路由器--> 或 > confreg 0x2142 <--16xx型路由器-->
router> I
router> n
router> enable
router# startup-config running-config
router# configure terminal
router(config)# enable secret New-Password
router(config)# config-register 0x2102
router(config)# ^z
router# running-config startup-config
router# reload
配置缺省路由:
router(config)# ip defoult-network IP-Address <--动态缺省路由-->
router(config)# ip route 0.0.0.0 0.0.0.0 [ Next-Hop-Address | Local-Out-Port ] [Distace ] <--静态缺省路由-->
router(config)# ^z

其它命令:
router# show version
router# show running-config
router# show startup-config
router# show flash
router# show interface [ Type Port ]
router# show buffers
router# show protocol
router# show mem
router# show stacks
router# show processes
router# show cdp entry [ Device-Name ] <--显示指定邻居三层信息-->
router# show cdp neighbors
router# show cdp neighbors detail <---显示所有邻居三层信息->
router# show ip router
router# show ipx router
router# show host
router# show ip protocol
router# show ip interface Type Port
router# show ipx interface Type Port
router# show ipx servers
router# show ipx traffic
router# show access-lists [ ACL-Number ]
router# show isdn status
router# show dialer <--查看ISDN拨号信息-->
router# show isdn active
router# show frame-relay pvc
router# show frame-relay map
router# show frame-relay lmi
router# erase startup-config
router# reload
router# setup
router# running-config startup-config
router# startup-config running-config
router# tftp running-config
router# running-config tftp
router# debug ipx routing activity
router# debug ipx sap
router# debug isdn q921
router# debug isdn q931
router# debug dialer
router# debug ip rip
router# clear interface bri

2. centos命令行中显示中文要如何配置

首先终端支持中文才可以正常显示,否则显示乱码
然后设置语言环境为中文,比如
export
LANG=zh_CN.gb2312

3. 生化奇兵1中文设置

输入命令参数即可
首先玩家需要下载epicgames软件,打开epicgames找到生化奇兵这款游戏,点击右上角的设置。之后向下拉找到管理游戏,然后就可以在这里看到生化奇兵,勾选额外命令行参数-epiclocale=zh-Hans就可以了。

另外,也看到一些玩家在玩生化奇兵的时候有进不去的情况,如果是网络卡进不去的话,可以尝试用暴喵加速器加速epic后再进游戏。

4. 如何将中文设置为控制面板的默认程序语言

出现这个提示是因为界面语言和非Unicode程序语言不一致导致的。解决方法是把非Unicode程序语言改为”中文 中国“。而他的位置就是通过控制面板。

方法如下

1、打开控制面板

6、然后就会提示重启,重启过之后,软件就能安装了。

(4)中文配置命令扩展阅读

控制面板(control panel)是Windows图形用户界面一部分,可通过开始菜单访问。它允许用户查看并操作基本的系统设置,比如添加/删除软件,控制用户帐户,更改辅助功能选项。

打开方式

在系统中我们可以在“开始”菜单栏打开控制面板,另外对于XP系统的用户,还可以在地址栏中直接输入“控制面板”来将其打开。

它的全局唯一标识符(GUID)为{21EC2020-3AEA-1069-A2DD-08002B30309D},因此,它也可以通过运行“::{20D04FE0-3AEA-1069-A2D8-08002B30309D}::{21EC2020-3AEA-1069-A2DD-08002B30309D}”来打开。

另,也可在运行对话框中输入命令control或通过任务管理器新建任务名control或进入CMD中输入control命令来打开控制面板。

在微软最新发布的操作系统windows 7中也可通过开始菜单直接访问或者在桌面右键>“个性化”>“更改桌面图标”>在“控制面板”打上勾即可在桌面打开控制面板。

Win7下也可以打开控制面板后,在任务栏图标上右键“将此程序锁定到任务栏”,那么控制面板就固定在任务栏上了,这样也很方便。

5. debian怎么设置为中文

Debian的中文设置

如果在安装debian基本系统的时候选择了英文的语言环境,之后又希望将它改为中文,需要完成下面几方面的工作。

设置locale

如果没有安装locale工具,则首先要安装它,然后执行

#dpkg-reconfigure locales

选择语言包。需要添加上zh_CN开头的几个选项,当然也可以只添加一个,然后,选择其中的一个作为默认。设置完成后,执行locale命令检查一下当前的locale设置是否为中文了。

安装中文字体

中文环境当然需要中文字体的支持,手工添加中文的xft字库。如:

#apt-get install ttf-arphic-gbsn00lp

#apt-get install ttf-arphic-gkai00mp

重启X

如果重启X后,发现整个系统的界面显示的还是英文,而使用locale命令检查 系统的locale设置又已经正确的配置为中文。当时遇到的情况就是某些应用的标题等显示为中文,但是工具菜单等显示和文件管理器等都显示成了英文。这 种情况很有可能是因为/etc/enviroment文件里有关语言的环境变量的设置不对。打开/etc/enviroment文件,通常会发现下面两个 字段:

LANGUAGE=“en_US:en”

LANG=“zh_CN”

在LANGUAGE字段添加中文的设置,比如:

LANGUAGE=“zh_CN:zh:en_US:en”

重启X,系统的语言环境应该就变为中文的了。

主要步骤:
#重新配置locales
1、dpkg-reconfigure locales
2、在对话框中选择语言
3、less /etc/environment

改为以下几行
LC_ALL="zh_CN.UTF-8"
LANG="zh_CN.UTF-8"
LANGUAGE="zh_CN.UTF-8:zh:en_US:en"
重启电脑
locale charmap
输出:UTF-8

"ok"

6. BIOS设置命令中文对照表

time/system time 时间/系统时间
date/system date 日期/系统日期
level 2 cache 二级缓存
system memory 系统内存
video controller 视频控制器
panel type 液晶屏型号
audio controller 音频控制器
modem controller 调制解调器(modem)
primary hard drive 主硬盘
molar bay 模块托架
service tag 服务标签
asset tag 资产标签
bios version bios版本
boot order/boot sequence 启动顺序(系统搜索操作系统文件的顺序)
diskette drive 软盘驱动器
internal hdd 内置硬盘驱动器
floppy device 软驱设备
hard-disk drive 硬盘驱动器
usb storage device usb存储设备
cd/dvd/cd-rw drive 光驱
cd-rom device 光驱
molar bay hdd 模块化硬盘驱动器
cardbus nic cardbus总线网卡
onboard nic 板载网卡
onboard bluetooth板载蓝牙设备

7. ubuntu 怎么设置中文环境 命令

打开“系统设置”:可以从右上角弹出菜单,选择“System Settings...”打开系统设置。
也可以点击左侧(齿轮和扳手)快捷图标打开。

在系统设置窗口中找到,蓝色旗帜图标(Language Support)打开。

打开“Language Support"后我们在上面的菜单框中可以看见已安装的语言,我们可以拖动右侧的滚动条在菜单中找找有没有熟悉的汉字。若有”汉语(中国)“请跳至 步骤 7,没有汉字就是没有安装中文语言,选择下面的”install/Remove...“来安装语言。

这里找到Chinese(simplified)后面复选框打钩。点击右下角”Apply Changes“。

输入系统用户密码确认安装。

在这步时最好是系统能上网,因为系统需要联网下载语言安装,下载的时候可能会比较慢。

安装语言后,语言菜单列表就能找到”汉语(中国)“,左键吧它拖到第一位。

”汉语(中国)“拖至第一位后,选择“Apply System——Wide”。

设完后选择右上角打开菜单,选择“Shut Down...”

弹出重启 关机 界面,选择重启。

重启后会弹出更新文件夹名称。

系统切换中文界面了。

8. autocad中字体配置命令激活方式

autocad中字体配置命令激活方式如下:
1.在命令面板或工具栏选择“默认>注释>文字样式”,或者输入ST命令后回车,调用文字样式命令,打开文字样式对话框。
2.在文字样式对话框中单击“新建”按钮,新建一个文字样式,将文字样式改名为“工程位置”。我们可以看到文字样式默认的字体是“宋体”,这是操作系统带的字体,CAD里有专用的字体文件,扩展名是*.shx,下面我们来设置一个CAD内的字体。
3.在“字体名”一栏的下拉菜单中选择“txt.shx”。由于字体列表中包含大量的操作系统字体,因此在查找CAD字体时,单击字体列表后,可以输入第一个字母以快速定位。我们注意到在字体名称下拉框下面有一个复选框“ Use large font”。 为了更好地使用CAD字体,您必须对大字体有一定的了解。 简而言之,所谓的小字体是包含英文和符号之类的字母的字体,而大字体是包含中文,日文和韩文的亚洲字符的字体。如果要使用CAD字体并显示中文字符,则必须设置大字体。 在上一部分的某些CAD版本中,使用默认文本样式时,由于默认文本样式没有大字体,因此输入中文时,单行文本将显示为问号。
4.选中“使用大字体”选项,然后从“大字体”列的下拉菜单中选择bigfont.shx。
5.输入文本高度值,例如“ 2.5”,单击“应用”以完成文本样式设置。 当然,如有必要,还可以设置文本的其他属性。

9. 输入什么命令能够看到中文的电脑配置

开始--运行---DXDIAG
不过这个只能是个大概, 要想看具体点的 最好用everest 这个软件。
用这个专业的软件查出来的比较具体详细。

阅读全文

与中文配置命令相关的资料

热点内容
xampp支持python 浏览:366
深圳周立功单片机 浏览:56
圆上点与点之间角度算法 浏览:862
怎么知道微信关联了哪些app 浏览:696
android事件驱动 浏览:881
签约大屏系统源码 浏览:784
安卓系统怎么转入平板 浏览:421
安卓手机相机怎么提取文字 浏览:219
如何查看服务器映射的外网地址 浏览:985
图片刺绣算法 浏览:675
阿里云服务器没有实例 浏览:605
绵阳有没有什么app 浏览:848
怎么用游侠映射服务器 浏览:919
为什么无意下载的app无法删除 浏览:306
word2007打开pdf 浏览:117
php正则class 浏览:738
怎么在文件夹查找一堆文件 浏览:545
核酸报告用什么app 浏览:793
u8怎么ping通服务器地址 浏览:996
安卓什么手机支持背部轻敲调出健康码 浏览:872