URL: https://www.opennet.me/cgi-bin/openforum/vsluhboard.cgi
Форум: vsluhforumID6
Нить номер: 11845
[ Назад ]

Исходное сообщение
"не работает соединение двух Cisco по Frame-Relay"

Отправлено Сергей , 30-Окт-06 16:09 
Добрый день! Не могу решить достаточно простую задачу - соединить две киски 1601R по FR.
Команда sh int Serial0 показывает serial0 is up, line protocol is down. Команда sh frame-relay pvc показывае pvc status INACTIVE. Так на обеих цисках.
Привожу конфигурации:

1-я циска.
version 12.0
service timestamps debug uptime
service timestamps log uptime
no service password-encryption
!
hostname Router_1
!
enable secret 5 $1$ZHWz$GCQcDVmQXaldXj2EIfBvp.
enable password 7 03550958
!
ip subnet-zero
frame-relay switching
!
!
!
interface Ethernet0
ip address 10.1.12.63 255.255.255.0
no ip directed-broadcast
!
interface Serial0
ip address 10.1.11.1 255.255.255.0
no ip directed-broadcast
encapsulation frame-relay
logging event subif-link-status
logging event dlci-status-change
no fair-queue
frame-relay interface-dlci 18
frame-relay lmi-type ansi
frame-relay intf-type dce
!
ip classless
ip route 0.0.0.0 0.0.0.0 10.1.11.2
!
!
line con 0
transport input none
line vty 0 4
password ***
login
!
end

2-я циска:

version 12.0
service timestamps debug uptime
service timestamps log uptime
no service password-encryption
!
hostname Router_2
!
enable secret 5 $1$ZHWz$GCQcDVmQXaldXj2EIfBvp.
enable password 7 03550958
!
ip subnet-zero
!
!
!
interface Ethernet0
ip address 10.1.14.1 255.255.255.0
no ip directed-broadcast
shutdown
!
interface Serial0
ip address 10.1.11.2 255.255.255.0
no ip directed-broadcast
encapsulation frame-relay
logging event subif-link-status
logging event dlci-status-change
no fair-queue
frame-relay interface-dlci 18
frame-relay lmi-type ansi
!
ip classless
ip route 0.0.0.0 0.0.0.0 10.1.11.1
!
!
line con 0
transport input none
line vty 0 4
password ***
login
!
end

Пожалуйста, подскажите в чем ошибка. Спасибо!


Содержание

Сообщения в этом обсуждении
"не работает соединение двух Cisco по Frame-Relay"
Отправлено Lacunacoil , 31-Окт-06 09:06 
>Добрый день! Не могу решить достаточно простую задачу - соединить две киски
>1601R по FR.
>Команда sh int Serial0 показывает serial0 is up, line protocol is down.
>Команда sh frame-relay pvc показывае pvc status INACTIVE. Так на обеих
>цисках.
>Привожу конфигурации:
>
>1-я циска.
>version 12.0
>service timestamps debug uptime
>service timestamps log uptime
>no service password-encryption
>!
>hostname Router_1
>!
>enable secret 5 $1$ZHWz$GCQcDVmQXaldXj2EIfBvp.
>enable password 7 03550958
>!
>ip subnet-zero
>frame-relay switching
>!
>!
>!
>interface Ethernet0
> ip address 10.1.12.63 255.255.255.0
> no ip directed-broadcast
>!
>interface Serial0
> ip address 10.1.11.1 255.255.255.0
> no ip directed-broadcast
> encapsulation frame-relay
> logging event subif-link-status
> logging event dlci-status-change
> no fair-queue
> frame-relay interface-dlci 18
> frame-relay lmi-type ansi
> frame-relay intf-type dce
>!
>ip classless
>ip route 0.0.0.0 0.0.0.0 10.1.11.2
>!
>!
>line con 0
> transport input none
>line vty 0 4
> password ***
> login
>!
>end
>
>2-я циска:
>
>version 12.0
>service timestamps debug uptime
>service timestamps log uptime
>no service password-encryption
>!
>hostname Router_2
>!
>enable secret 5 $1$ZHWz$GCQcDVmQXaldXj2EIfBvp.
>enable password 7 03550958
>!
>ip subnet-zero
>!
>!
>!
>interface Ethernet0
> ip address 10.1.14.1 255.255.255.0
> no ip directed-broadcast
> shutdown
>!
>interface Serial0
> ip address 10.1.11.2 255.255.255.0
> no ip directed-broadcast
> encapsulation frame-relay
> logging event subif-link-status
> logging event dlci-status-change
> no fair-queue
> frame-relay interface-dlci 18
> frame-relay lmi-type ansi
>!
>ip classless
>ip route 0.0.0.0 0.0.0.0 10.1.11.1
>!
>!
>line con 0
> transport input none
>line vty 0 4
> password ***
> login
>!
>end
>
>Пожалуйста, подскажите в чем ошибка. Спасибо!

Попробуй так:

>interface Serial0
   ip address 10.1.11.2 255.255.255.0
-- no ip directed-broadcast
-- encapsulation frame-relay
++ encapsulation frame-relay IETF
   logging event subif-link-status
   logging event dlci-status-change
++ keepalive 30
++ frame-relay map ip 10.1.11.1 30
++ frame-relay intf-type dce  с другой стороны DTE
-- no fair-queue
-- frame-relay interface-dlci 18
-- frame-relay lmi-type ansi



"не работает соединение двух Cisco по Frame-Relay"
Отправлено Сергей , 31-Окт-06 09:40 
>Попробуй так:
>
>>interface Serial0
>   ip address 10.1.11.2 255.255.255.0
>-- no ip directed-broadcast
>-- encapsulation frame-relay
>++ encapsulation frame-relay IETF
>   logging event subif-link-status
>   logging event dlci-status-change
>++ keepalive 30
>++ frame-relay map ip 10.1.11.1 30
>++ frame-relay intf-type dce  с другой стороны DTE
>-- no fair-queue
>-- frame-relay interface-dlci 18
>-- frame-relay lmi-type ansi


К сожалению, не помогло ... :((


"не работает соединение двух Cisco по Frame-Relay"
Отправлено Lacunacoil , 31-Окт-06 09:43 
>>Попробуй так:
>>
>>>interface Serial0
>>   ip address 10.1.11.2 255.255.255.0
>>-- no ip directed-broadcast
>>-- encapsulation frame-relay
>>++ encapsulation frame-relay IETF
>>   logging event subif-link-status
>>   logging event dlci-status-change
>>++ keepalive 30
>>++ frame-relay map ip 10.1.11.1 30
>>++ frame-relay intf-type dce  с другой стороны DTE
>>-- no fair-queue
>>-- frame-relay interface-dlci 18
>>-- frame-relay lmi-type ansi
>
>
>К сожалению, не помогло ... :((

sh int serial0


"не работает соединение двух Cisco по Frame-Relay"
Отправлено fantom , 31-Окт-06 10:14 
>Добрый день! Не могу решить достаточно простую задачу - соединить две киски
>1601R по FR.
>Команда sh int Serial0 показывает serial0 is up, line protocol is down.
>Команда sh frame-relay pvc показывае pvc status INACTIVE. Так на обеих
>цисках.
>Привожу конфигурации:
>
>1-я циска.
>version 12.0
>service timestamps debug uptime
>service timestamps log uptime
>no service password-encryption
>!
>hostname Router_1
>!
>enable secret 5 $1$ZHWz$GCQcDVmQXaldXj2EIfBvp.
>enable password 7 03550958
>!
>ip subnet-zero
>frame-relay switching
>!
>!
>!
>interface Ethernet0
> ip address 10.1.12.63 255.255.255.0
> no ip directed-broadcast
>!
>interface Serial0
> ip address 10.1.11.1 255.255.255.0

no ip address

> no ip directed-broadcast
> encapsulation frame-relay
> logging event subif-link-status
> logging event dlci-status-change
> no fair-queue
> frame-relay interface-dlci 18

no frame-relay interface-dlci 18

> frame-relay lmi-type ansi
> frame-relay intf-type dce

interface Serial0.1 point-to-point
ip address 10.1.11.1 255.255.255.252
frame-relay interface-dlci 18

>!
>ip classless
>ip route 0.0.0.0 0.0.0.0 10.1.11.2
>!
>!
>line con 0
> transport input none
>line vty 0 4
> password ***
> login
>!
>end
>
>2-я циска:
>
>version 12.0
>service timestamps debug uptime
>service timestamps log uptime
>no service password-encryption
>!
>hostname Router_2
>!
>enable secret 5 $1$ZHWz$GCQcDVmQXaldXj2EIfBvp.
>enable password 7 03550958
>!
>ip subnet-zero
>!
>!
>!
>interface Ethernet0
> ip address 10.1.14.1 255.255.255.0
> no ip directed-broadcast
> shutdown
>!
>interface Serial0
> ip address 10.1.11.2 255.255.255.0

no ip address

> no ip directed-broadcast
> encapsulation frame-relay
> logging event subif-link-status
> logging event dlci-status-change
> no fair-queue
> frame-relay interface-dlci 18

no  frame-relay interface-dlci 18

> frame-relay lmi-type ansi

interface Serial0.1 point-to-point
ip address 10.1.11.2 255.255.255.252
frame-relay interface-dlci 18

>!
>ip classless
>ip route 0.0.0.0 0.0.0.0 10.1.11.1
>!
>!
>line con 0
> transport input none
>line vty 0 4
> password ***
> login
>!
>end
>
>Пожалуйста, подскажите в чем ошибка. Спасибо!



"не работает соединение двух Cisco по Frame-Relay"
Отправлено Nailer , 31-Окт-06 10:49 
>Добрый день! Не могу решить достаточно простую задачу - соединить две киски
>1601R по FR.
>Команда sh int Serial0 показывает serial0 is up, line protocol is down.
>Команда sh frame-relay pvc показывае pvc status INACTIVE. Так на обеих
>цисках.
>Привожу конфигурации:
>
>1-я циска.
>version 12.0
>service timestamps debug uptime
>service timestamps log uptime
>no service password-encryption
>!
>hostname Router_1
>!
>enable secret 5 $1$ZHWz$GCQcDVmQXaldXj2EIfBvp.
>enable password 7 03550958
>!
>ip subnet-zero
>frame-relay switching
>!
>!
>!
>interface Ethernet0
> ip address 10.1.12.63 255.255.255.0
> no ip directed-broadcast
>!
>interface Serial0
> ip address 10.1.11.1 255.255.255.0
> no ip directed-broadcast
> encapsulation frame-relay
> logging event subif-link-status
> logging event dlci-status-change
> no fair-queue
> frame-relay interface-dlci 18
> frame-relay lmi-type ansi
> frame-relay intf-type dce
>!
>ip classless
>ip route 0.0.0.0 0.0.0.0 10.1.11.2
>!
>!
>line con 0
> transport input none
>line vty 0 4
> password ***
> login
>!
>end
>
>2-я циска:
>
>version 12.0
>service timestamps debug uptime
>service timestamps log uptime
>no service password-encryption
>!
>hostname Router_2
>!
>enable secret 5 $1$ZHWz$GCQcDVmQXaldXj2EIfBvp.
>enable password 7 03550958
>!
>ip subnet-zero
>!
>!
>!
>interface Ethernet0
> ip address 10.1.14.1 255.255.255.0
> no ip directed-broadcast
> shutdown
>!
>interface Serial0
> ip address 10.1.11.2 255.255.255.0
> no ip directed-broadcast
> encapsulation frame-relay
> logging event subif-link-status
> logging event dlci-status-change
> no fair-queue
> frame-relay interface-dlci 18
> frame-relay lmi-type ansi
>!
>ip classless
>ip route 0.0.0.0 0.0.0.0 10.1.11.1
>!
>!
>line con 0
> transport input none
>line vty 0 4
> password ***
> login
>!
>end
>
>Пожалуйста, подскажите в чем ошибка. Спасибо!


Вы их на столе соединяете или через сеть оператора?


"не работает соединение двух Cisco по Frame-Relay"
Отправлено Сергей , 31-Окт-06 11:51 
Соединяю на столе. Спасибо, проблема решилась! Окзывается надо было еще настроить clockrate.