29号球衣篮球明星:实战案例:我的银行网络配置

来源:百度文库 编辑:偶看新闻 时间:2024/04/27 21:46:51
实战案例:我的银行网络配置 网友:phoenix1017 发布于: 2008.10.25 09:15 (共有条评论) 查看评论 | 我要评论  
--------转载
做过的银行的网络工程。
  
  一定要有耐心看完它,就算看不懂,也要多会,我相信会对你的网络知识有所帮助的。如果有什么看不懂的,同样还可以来找我,我们共同探讨。QQ:124414812。
  
  1: 不同的终端使用不同的unix主机上的不同业务
  
  需求:终端0/1/2应用对公业务;终端3/4/5/6/7应用储蓄业务
  
  [Router] tty enable 使能终端接入服务功能
  [Router] tty-app sender connect 0-2 10.0.1.2 9001 1 duigong 0-2对公业务
  [Router] tty-app sender connect 3-7 10.0.1.1 9000 1 chuxu 3-7储蓄业务
  
  [Router] interface Serial0
  [Router-Serial0] clock DTECLK1
  [Router-Serial0] link-protocol ppp
  [Router-Serial0] ip address 10.0.0.1 255.255.255.0
  
  [Router] interface Async0
  [Router-Async0]undo modem
  [Router-Async0] async mode tty 0 0 0 16000
  [Router-Async0] link-protocol ppp
  
  [Router] interface Async1
  [Router-Async1] undo modem
  [Router-Async1] async mode tty 1 0 1 16000
  [Router-Async1] link-protocol ppp
  
  [Router] interface Async2
  [Router-Async2] undo modem
  [Router-Async2] async mode tty 2 0 2 16000
  [Router-Async2] link-protocol ppp
  !
  [Router] interface Async3
  [Router-Async3] undo modem
  [Router-Async3] async mode tty 3 0 3 16000
  [Router-Async3] link-protocol ppp
  !
  [Router] interface Async4
  [Router-Async4] undo modem
  [Router-Async4] async mode tty 4 0 4 16000
  [Router-Async4] link-protocol ppp
  !
  [Router] interface Async5
  [Router-Async5] undo modem
  [Router-Async5] async mode tty 5 0 5 16000 link-protocol ppp
  !
  [Router] interface Async6
  [Router-Async6] undo modem
  [Router-Async6] async mode tty 6 0 6 16000
  [Router-Async6] link-protocol ppp
  !
  [Router] interface Async7
  [Router-Async7] undo modem
  [Router-Async7] async mode tty 7 0 7 16000
  [Router-Async7] link-protocol ppp
  
  
  [Router] ip route-static 0.0.0.0 0.0.0.0 10.0.0.2 preference 60
  !
  quit
  储蓄unix主机10.0.1.1的ttyd.conf内容:
  severport 9000
  mode 1
  squitsize 512
  readsize 300
  interval 200
  nodelay 1
  debug 0
  ttyp50 10.0.0.1 3
  ttyp51 10.0.0.1 4
  ttyp52 10.0.0.1 5
  ttyp53 10.0.0.1 6
  ttyp54 10.0.0.1 7
  
  对公unix主机10.0.1.2的ttyd.conf内容:
  severport 9001
  mode 1
  squitsize 512
  readsize 300
  interval 200
  nodelay 1
  debug 0
  ttyp50 10.0.0.1 0
  ttyp51 10.0.0.1 1
  ttyp52 10.0.0.1 2
  
  2:不同终端使用同一unix主机上的不同业务
  需求:对公储蓄业务均在一台unix主机上运行;终端0/1/2应用对公业务,终端3/4/5/6/7应用储蓄业务
  
  [Router] Tty enable 使能终端接入服务功能
  [Router] tty-app sender connect 0-2 10.0.1.1 9001 1 duigong 0-2对公
  [Router] tty-app sender connect 3-7 10.0.1.1 9000 1 chuxu
  3-7储蓄
  [Router] interface Serial0
  
  
  [Router-Serial0] clock DTECLK1
  [Router-Serial0] link-protocol ppp
  [Router-Serial0] ip address 10.0.0.1 255.255.255.0
  !
  [Router] interface Async0
  [Router-Async0] undo modem
  [Router-Async0] async mode tty 0 0 0 16000 请注意数字颜色
  [Router-Async0] link-protocol ppp 与上下文对应关系
  !
  [Router] interface Async1
  [Router-Async1] undo modem
  [Router-Async1] async mode tty 1 0 1 16000
  [Router-Async1] link-protocol ppp
  !
  [Router] interface Async2
  [Router-Async2] undo modem
  [Router-Async2] async mode tty 2 0 2 16000
  [Router-Async2] link-protocol ppp
  !
  [Router] interface Async3
  [Router-Async3] undo modem
  [Router-Async3] async mode tty 3 0 3 16000
  [Router-Async3] link-protocol ppp
  !
  [Router] interface Async4
  [Router-Async4] undo modem
  [Router-Async4] async mode tty 4 0 4 16000
  [Router-Async4] link-protocol ppp
  !
  [Router] interface Async5
  [Router-Async5] undo modem
  [Router-Async5] async mode tty 5 0 5 16000
  [Router-Async5] link-protocol ppp
  !
  [Router] interface Async6
  [Router-Async6] undo modem
  [Router-Async6] async mode tty 6 0 6 16000
  [Router-Async6] link-protocol ppp
  !
  interface Async7
  [Router] undo modem
  [Router-Async7] async mode tty 7 0 7 16000
  [Router-Async7] link-protocol ppp
  !
  quit
  
  [Router] ip route-static 0.0.0.0 0.0.0.0 10.0.0.2 preference 60
  !
  return
  
  unix主机10.0.1.1储蓄的ttyd1.conf内容:
  severport 9000
  mode 1
  squitsize 512
  readsize 300
  interval 200
  nodelay 1
  debug 0
  ttyp50 10.0.0.1 3
  ttyp51 10.0.0.1 4
  ttyp52 10.0.0.1 5
  ttyp53 10.0.0.1 6
  ttyp54 10.0.0.1 7
  
  unix主机10.0.1.1对公的ttyd2.conf内容:
  severport 9001
  mode 1
  squitsize 512
  readsize 300
  interval 200
  nodelay 1
  debug 0
  ttyp60 10.0.0.1 0
  ttyp61 10.0.0.1 1
  ttyp62 10.0.0.1 2
  
  3: 同一终端同时使用多种业务
  需求: 终端0/1可以处理储蓄,对公,记账,外汇四项业务
  终端2/3可以处理储蓄,对公,记账三项业务
  终端4/5可以处理储蓄,记账两项业务
  终端6/7可以处理储蓄业务
  切换按键为ctrl+6,对应的anscii值为30
  
  !
  version 1.74
  [Router] tty enable
  [Router] tty-app sender connection 0 10.0.1.1 9000 1 chuxu
  [Router] tty-app sender connection 1 10.0.1.1 9001 1 duigong
  [Router] tty-app sender connection 2 10.0.1.2 9002 1 jizhang
  [Router] tty-app sender connection 3 10.0.1.2 9003 1 waihui
  [Router] tty-app sender connection 4 10.0.1.1 9000 1 chuxu
  [Router] tty-app sender connection 5 10.0.1.1 9001 1 duigong
  [Router] tty-app sender connection 6 10.0.1.2 9002 1 jizhang
  
  
  [Router] tty-app sender connection 7 10.0.1.2 9003 1 waihui
  [Router] tty-app sender connection 8 10.0.1.1 9000 1 chuxu
  [Router] tty-app sender connection 9 10.0.1.1 9001 1 duigong
  [Router] tty-app sender connection 10 10.0.1.2 9002 1 jizhang
  [Router] tty-app sender connection 11 10.0.1.1 9000 1 chuxu
  [Router] tty-app sender connection 12 10.0.1.1 9001 1 duigong
  [Router] tty-app sender connection 13 10.0.1.2 9002 1 jizhang
  [Router] tty-app sender connection 14 10.0.1.1 9000 1 chuxu
  [Router] tty-app sender connection 15 10.0.1.2 9002 1 jizhang
  [Router] tty-app sender connection 16 10.0.1.1 9000 1 chuxu
  [Router] tty-app sender connection 17 10.0.1.2 9002 1 jizhang
  [Router] tty-app sender connection 18 10.0.1.1 9000 1 chuxu
  [Router] tty-app sender connection 19 10.0.1.1 9000 1 chuxu
  !
  
  [Router] interface Serial0
  [Router-Serial0] clock DTECLK1
  [Router-Serial0] link-protocol ppp
  [Router-Serial0] ip address 10.0.0.1 255.255.255.0
  !
  [Router] interface Async0
  [Router-Async0] undo modem
  [Router-Async0] async mode tty 0 0 0
  [Router-Async0] async mode tty 0 1 1
  [Router-Async0] async mode tty 0 2 2
  [Router-Async0] async mode tty 0 3 3
  [Router-Async0] tty menu-key 30
  [Router-Async0] link-protocol ppp
  !
  [Router] interface Async1
  [Router-Async1] undo modem
  [Router-Async1] async mode tty 1 0 4
  [Router-Async1] async mode tty 1 1 5
  [Router-Async1] async mode tty 1 2 6
  [Router-Async1] async mode tty 1 3 7
  [Router-Async1] tty menu-key 30
  [Router-Async1] link-protocol ppp
  !
  [Router] interface Async2
  [Router-Async2] undo modem
  [Router-Async2] async mode tty 2 0 8
  [Router-Async2] async mode tty 2 1 9
  [Router-Async2]