Can someone review my router config.

77 views
Skip to first unread message

Chris Whitam

unread,
Mar 22, 2018, 4:55:23 PM3/22/18
to P25NX
Have everything tossed together for testing and I am getting nothing not even channel announcements.  Can someone please review my router config and confirm I have the correct addresses in the correct spots.  I'm not very well versed in cisco.

MY IP Addresses

STUN         155    

Tunnel IP         172.21.4.155 

Subnet                172.31.4.240/30 

FA0/0                172.31.4.241 

Pi                172.31.4.242     



service nagle

service timestamps debug datetime msec

service timestamps log datetime msec

service password-encryption

service sequence-numbers

!

hostname ac2dwcisco1

!

boot-start-marker

boot-end-marker

!

logging buffered 16384

!

no aaa new-model

!

!

ip cef

!

!

!

!

! Change following to your callsign

ip domain name ac2dw.p25nx.com

!

! Following is using google for DNS

!

ip name-server 8.8.8.8

ip name-server 8.8.4.4

ip multicast-routing

!

multilink bundle-name authenticated

!

!

!

!

archive

 log config

  hidekeys

!

!

!

crypto isakmp policy 1

 authentication pre-share

crypto isakmp key BA4841AF1D3FD327D83F6CF81D4CB address 0.0.0.0 0.0.0.0

!

!

crypto ipsec transform-set trans2 esp-des esp-md5-hmac

 mode transport

!

crypto ipsec profile vpnprof

 set transform-set trans2

!

!

!

!

! CHANGE FOLLOWING TO YOUR LAN IP - THE ONE YOU USE FOR YOUR FastEthernet0/0

!

stun peer-name 192.168.1.11

!

!

! CHANGE FOLLOWING TO YOUR STUN GROUP

stun protocol-group 155 basic

!

! IN FOLLOWING SECTIONS, CHANGE TO YOUR REGION.STUNGROUP

!

! REGIONS:

! PACIFIC = 3

! NORTH AMERICA = 4

! EUROPE = 5

!

interface Loopback0

 ip address 10.2.4.155 255.255.255.255

 ip pim sparse-mode

!

interface Tunnel1

 bandwidth 1000

 ip address 172.21.4.155 255.255.240.0

 no ip redirects

 ip mtu 1400

 ip pim nbma-mode

 ip pim sparse-mode

 ip nhrp authentication p25nx

 ip nhrp map 172.21.1.1 44.98.249.177

 ip nhrp map multicast 44.98.249.177

 ip nhrp network-id 100001

 ip nhrp holdtime 600

 ip nhrp nhs 172.21.1.1

 ip nhrp cache non-authoritative

 ip tcp adjust-mss 1350

 ip ospf network broadcast

 ip ospf priority 0

 delay 1000

 tunnel source FastEthernet0/0

 tunnel mode gre multipoint

 tunnel key 100001

 tunnel protection ipsec profile vpnprof shared

!

interface FastEthernet0/0

 ip address 192.168.1.11 255.255.255.0

 ip pim sparse-mode

 ip igmp query-interval 125

 duplex auto

 speed auto

!

! FOLLOWING ADDRESS MUST BE ASSIGNED BY P25NX ADMIN!

!

interface FastEthernet0/1

 ip address 172.31.4.241 255.255.0.0

 ip pim sparse-mode

 no ip route-cache cef

 ip igmp query-interval 125


 duplex auto

 speed auto

!

interface Serial0/1/0

 mtu 2104

 no ip address

 encapsulation stun

 clock rate 9600

 stun group 155

 stun route all tcp 172.31.4.242

!

! FOLLOWING SECTION HAS NETWORK ASSIGNED BY P25NX ADMIN

!

router ospf 1

 log-adjacency-changes

 network 10.2.4.155 0.0.0.0 area 0

 network 172.21.4.155 0.0.0.0 area 0

 network 172.31.4.241 0.0.0.3 area 0

 maximum-paths 1

!

ip route 0.0.0.0 0.0.0.0 192.168.1.1

!

!

ip http server

no ip http secure-server

ip pim bidir-enable

ip pim spt-threshold infinity

!

!

!

end






Chris Whitam

unread,
Mar 28, 2018, 12:12:32 AM3/28/18
to P25NX
Well two steps forward one step backwards.  I found a typo in the vpn config, the tunnels now show as up.  Still don't have any voice announcements or voice via the quantar.  I am leaving the cisco/pi powered up if any one that is more experienced/knows what they are doing wants to take a look.  I have the Quantar powered down until I have more time to play with it.  Just trying to narrow down the problems a little at a time.

Mike Lussier

unread,
Mar 29, 2018, 6:36:01 AM3/29/18
to P25NX
Good morning Chris,
A quick sweep and this is what I found

You have this entry for Fa0/1


interface FastEthernet0/1

 ip address 172.31.4.241 255.255.0.0

 ip pim sparse-mode

 no ip route-cache cef

 ip igmp query-interval 125


The subnet mask is not correct the entry should be this
ip address 172.31.4.241 255.255.255.252


Mike AE4ML

Chris Whitam

unread,
Mar 29, 2018, 9:38:32 AM3/29/18
to P25NX
I believe the Pi is also set to 255.255.0.0 subnet mask, I will change them both to 255.255.255.252

Chris Whitam

unread,
Mar 30, 2018, 1:23:35 PM3/30/18
to P25NX
Good thing I don't have much hair to pull out.  Fixed the subnets but still no luck.  Poking through the config under router ospf 1 where the template shows f0/1, I enter my fastethernet0/1 address, but when i review the running config it is changed to 172.31.4.240.   


templace

router ospf 1
 log-adjacency-changes
 network 10.2.REGION.STUNGROUP 0.0.0.0 area 0
 network (tunnel address) 0.0.0.0 area 0
 network (f0/1 network) 0.0.0.3 area 0 

maximum-paths 1


my config that I enter

router ospf 1

 log-adjacency-changes

 network 10.2.4.155 0.0.0.0 area 0

 network 172.21.4.155 0.0.0.0 area 0

 network 172.31.4.241 0.0.0.3 area 0

 maximum-paths 1


Actual Config

router ospf1
network 10.2.4.155 0.0.0.0 area 0
network 172.21.4.155 0.0.0.0 area 0
network 172.31.4.240 0.0.0.3 area 0
maximum-paths 1



On Thursday, March 22, 2018 at 4:55:23 PM UTC-4, Chris Whitam wrote:

Bryan Fields

unread,
Mar 30, 2018, 1:35:30 PM3/30/18
to P25NX
On 3/30/18 1:23 PM, Chris Whitam wrote:
> Good thing I don't have much hair to pull out.  Fixed the subnets but still no
> luck.  Poking through the config under router ospf 1 where the template shows
> f0/1, I enter my fastethernet0/1 address, but when i review the running config
> it is changed to 172.31.4.240.

setup a login on your box and I'll take a look at it.

It's on the VPN.
USHUB1#ping 172.21.4.155
Type escape sequence to abort.
Sending 5, 100-byte ICMP Echos to 172.21.4.155, timeout is 2 seconds:
!!!!!
Success rate is 100 percent (5/5), round-trip min/avg/max = 44/44/44 ms

--
Bryan Fields

727-409-1194 - Voice
http://bryanfields.net

Chris Whitam

unread,
May 19, 2018, 12:09:04 PM5/19/18
to P25NX
Still no luck.  Have upgraded all the firmware in the Quantar, swapped V.24 boards, still just get the flashing aux led signifying no V24 Link.  Status screen shows failures as attached 


Cisco is an 1841 with Adv Enterprise 15.1, shows links on all tunnels and all interfaces show up.  I am able to ping the pi from within the Cisco.  

Mike Lussier

unread,
May 19, 2018, 1:26:19 PM5/19/18
to Chris Whitam, P25NX
Chris,

DO you have all the cables in place ? RJ45 from the board to the RJ45 to the CIsco DCE cable to the Serial interface on the router ?  is the Serial interface up or up/down or shutdown ?
Is the Pi up and working ? can you ping the IP of the PI and its gateway ?

These things need to be working for the V.24 interface to go a steady on state.

Mike

--
You received this message because you are subscribed to a topic in the Google Groups "P25NX" group.
To unsubscribe from this topic, visit https://groups.google.com/d/topic/p25nx/sZtI5eIYKvg/unsubscribe.
To unsubscribe from this group and all its topics, send an email to p25nx+unsubscribe@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/p25nx/3b75a088-e6b2-422f-8d7a-20b9340a590b%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.



--

Michael Lussier AE4ML


“Those who fail to learn from history are doomed to repeat it” Winston Churchill

"We must reject the idea that every time a law is broken, society is guilty rather than the law breaker.It is time to restore the American precept that each individual is accountable for his actions." ~ Ronald Regan


Chris Whitam

unread,
May 19, 2018, 4:37:20 PM5/19/18
to P25NX
Yes all cables in place, Cat5, to DCE, to Serial Interface.  When plugged in the serial port on the Cisco shows as up.  I can ping the Pi with 100% success rate from the Cisco router.  
To unsubscribe from this group and all its topics, send an email to p25nx+un...@googlegroups.com.

Jamison Judge

unread,
May 19, 2018, 5:48:02 PM5/19/18
to Chris Whitam, P25NX
Hey Chris,
I've got a little inkling of a suspicion. Would you mind hard power cycling your cisco and then pasting the output of show running-config, show ip interface brief, and show ip route here?
--
You received this message because you are subscribed to the Google Groups "P25NX" group.
To unsubscribe from this group and stop receiving emails from it, send an email to p25nx+un...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/p25nx/91cc927c-5ef0-4618-a6d9-e7d50e210aba%40googlegroups.com.

Steve Jones

unread,
May 19, 2018, 6:36:06 PM5/19/18
to Jamison Judge, Chris Whitam, P25NX
Do you have the jumper in the db25 to rj45 adaptor in place?

Chris Whitam

unread,
May 19, 2018, 9:31:36 PM5/19/18
to P25NX
running-config
Current configuration : 2915 bytes
!
! No configuration change since last restart
!
version 15.1
service nagle
service timestamps debug datetime msec
service timestamps log datetime msec
service password-encryption
service sequence-numbers
!
hostname ac2dwcisco1
!
boot-start-marker
boot-end-marker
!
!
logging buffered 16384
!
aaa new-model
!
!
aaa authentication login localauth local
aaa authorization exec default local
aaa accounting delay-start
!
!
!
!
!
aaa session-id common
!
dot11 syslog
ip source-route
!
!
!
!
!
ip cef
ip domain name ac2dw.p25nx.com
ip name-server 8.8.8.8
ip name-server 8.8.4.4
ip multicast-routing
no ipv6 cef
!
multilink bundle-name authenticated
!
crypto pki token default removal timeout 0
!
!
!
!
license udi pid CISCO1841 sn FTX1025W1NV
archive
 log config
  hidekeys
username w9cr privilege 15 secret 5 *****
username nx4y privilege 15 secret 5 *****
username ac2dw privilege 15 secret 5 *****
!
redundancy
!
!
!
!
crypto isakmp policy 1
 authentication pre-share
crypto isakmp key BA4841AF1D3FD327D83F6CF81D4CB address 0.0.0.0 0.0.0.0
!
!
crypto ipsec transform-set trans2 esp-des esp-md5-hmac
 mode transport
!
crypto ipsec profile vpnprof
 set transform-set trans2
!
!
!
!
stun peer-name 192.168.1.11
stun protocol-group 155 basic
!
!
!
interface Loopback0
 ip address 10.2.4.155 255.255.255.255
 ip pim sparse-mode
!
interface Tunnel1
 bandwidth 1000
 ip address 172.21.4.155 255.255.240.0
 no ip redirects
 ip mtu 1400
 ip pim nbma-mode
 ip pim sparse-mode
 ip nhrp authentication p25nx
 ip nhrp map 172.21.1.1 44.98.249.177
 ip nhrp map multicast 44.98.249.177
 ip nhrp network-id 100001
 ip nhrp holdtime 600
 ip nhrp nhs 172.21.1.1
 ip tcp adjust-mss 1350
 ip ospf network broadcast
 ip ospf priority 0
 delay 1000
 tunnel source FastEthernet0/0
 tunnel mode gre multipoint
 tunnel key 100001
 tunnel protection ipsec profile vpnprof shared
!
interface FastEthernet0/0
 ip address 192.168.1.11 255.255.255.0
 ip pim sparse-mode
 ip igmp query-interval 125
 duplex auto
 speed auto
!
interface FastEthernet0/1
 ip address 172.31.4.241 255.255.255.252
 ip pim sparse-mode
 no ip route-cache cef
 ip igmp query-interval 125
 duplex auto
 speed auto
!
interface Serial0/0/0
 no ip address
 no keepalive
!
interface Serial0/1/0
 mtu 2104
 no ip address
 encapsulation stun
 clock rate 9600
 stun group 155
 stun route all tcp 172.31.4.242
!
router ospf 1
 network 10.2.4.155 0.0.0.0 area 0
 network 172.21.4.155 0.0.0.0 area 0
 network 172.31.4.240 0.0.0.3 area 0
 maximum-paths 1
!
ip forward-protocol nd
ip http server
no ip http secure-server
!
!
ip pim bidir-enable
ip pim spt-threshold infinity
ip route 0.0.0.0 0.0.0.0 192.168.1.1
!
logging esm config
!
!
!
!
!
!
!
control-plane
!
!
!
line con 0
 exec-timeout 0 0
line aux 0
line vty 0 4
 exec-timeout 180 0
 transport input telnet ssh
!
scheduler allocate 20000 1000
end


 IP Interface
Interface                  IP-Address      OK? Method Status                Protocol
FastEthernet0/0            192.168.1.11    YES NVRAM  up                    up
FastEthernet0/1            172.31.4.241    YES NVRAM  up                    up
Serial0/0/0                unassigned      YES NVRAM  down                  down
Serial0/1/0                unassigned      YES NVRAM  up                    up
Loopback0                  10.2.4.155      YES NVRAM  up                    up
Tunnel0                    172.21.4.155    YES unset  up                    up
Tunnel1                    172.21.4.155    YES NVRAM  up                    up
Tunnel2                    172.21.4.155    YES unset  up                    up
Tunnel3                    172.21.4.155    YES unset  up                    up
Tunnel4                    172.21.4.155    YES unset  up                    up

 
show IP Route
 
Codes: L - local, C - connected, S - static, R - RIP, M - mobile, B - BGP
       D - EIGRP, EX - EIGRP external, O - OSPF, IA - OSPF inter area
       N1 - OSPF NSSA external type 1, N2 - OSPF NSSA external type 2
       E1 - OSPF external type 1, E2 - OSPF external type 2
       i - IS-IS, su - IS-IS summary, L1 - IS-IS level-1, L2 - IS-IS level-2
       ia - IS-IS inter area, * - candidate default, U - per-user static route
       o - ODR, P - periodic downloaded static route, H - NHRP, l - LISP
       + - replicated route, % - next hop override

Gateway of last resort is 192.168.1.1 to network 0.0.0.0
S*    0.0.0.0/0 [1/0] via 192.168.1.1
      10.0.0.0/8 is variably subnetted, 42 subnets, 2 masks
O        10.2.1.1/32 [110/101] via 172.21.1.1, 00:06:40, Tunnel1
O        10.2.1.2/32 [110/1101] via 172.21.1.1, 00:06:40, Tunnel1
O        10.2.2.2/32 [110/1101] via 172.21.1.1, 00:06:40, Tunnel1
O        10.2.3.1/32 [110/1201] via 172.21.1.1, 00:06:40, Tunnel1
O        10.2.3.67/32 [110/1201] via 172.21.1.1, 00:06:40, Tunnel1
O        10.2.3.123/32 [110/1201] via 172.21.1.1, 00:06:40, Tunnel1
O        10.2.3.133/32 [110/1201] via 172.21.1.1, 00:06:40, Tunnel1
O        10.2.3.135/32 [110/1201] via 172.21.1.1, 00:06:40, Tunnel1
O        10.2.4.4/32 [110/101] via 172.21.4.4, 00:06:40, Tunnel1
O        10.2.4.49/32 [110/101] via 172.21.4.49, 00:06:40, Tunnel1
O        10.2.4.50/32 [110/101] via 172.21.4.50, 00:06:40, Tunnel1
O        10.2.4.51/32 [110/101] via 172.21.4.51, 00:06:40, Tunnel1
O        10.2.4.55/32 [110/101] via 172.21.4.55, 00:06:40, Tunnel1
O        10.2.4.68/32 [110/101] via 172.21.4.68, 00:06:40, Tunnel1
O        10.2.4.69/32 [110/101] via 172.21.4.69, 00:06:40, Tunnel1
O        10.2.4.76/32 [110/101] via 172.21.4.76, 00:06:40, Tunnel1
O        10.2.4.104/32 [110/101] via 172.21.4.104, 00:06:40, Tunnel1
O        10.2.4.108/32 [110/101] via 172.21.4.108, 00:06:40, Tunnel1
O        10.2.4.109/32 [110/101] via 172.21.4.109, 00:06:40, Tunnel1
O        10.2.4.112/32 [110/101] via 172.21.4.112, 00:06:40, Tunnel1
O        10.2.4.114/32 [110/101] via 172.21.4.114, 00:06:40, Tunnel1
O        10.2.4.120/32 [110/101] via 172.21.4.120, 00:06:40, Tunnel1
O        10.2.4.121/32 [110/101] via 172.21.4.121, 00:06:40, Tunnel1
O        10.2.4.126/32 [110/101] via 172.21.4.126, 00:06:40, Tunnel1
O        10.2.4.136/32 [110/101] via 172.21.4.136, 00:06:40, Tunnel1
O        10.2.4.144/32 [110/101] via 172.21.4.144, 00:06:40, Tunnel1
O        10.2.4.145/32 [110/101] via 172.21.4.145, 00:06:40, Tunnel1
O        10.2.4.149/32 [110/101] via 172.21.4.149, 00:06:40, Tunnel1
O        10.2.4.153/32 [110/101] via 172.21.4.153, 00:06:40, Tunnel1
C        10.2.4.155/32 is directly connected, Loopback0
C        10.2.4.155/32 is directly connected, Loopback0
O        10.2.5.53/32 [110/12312] via 172.21.1.1, 00:06:40, Tunnel1
O        10.2.5.54/32 [110/12312] via 172.21.1.1, 00:06:40, Tunnel1
O        10.2.5.56/32 [110/12312] via 172.21.1.1, 00:06:40, Tunnel1
O        10.10.10.10/32 [110/1101] via 172.21.1.1, 00:06:40, Tunnel1
O        10.20.100.0/24 [110/101] via 172.21.4.51, 00:06:40, Tunnel1
O        10.22.1.1/32 [110/12212] via 172.21.1.1, 00:06:40, Tunnel1
O        10.22.5.150/32 [110/12312] via 172.21.1.1, 00:06:40, Tunnel1
O E2     10.63.2.65/32 [110/20] via 172.21.4.252, 00:06:40, Tunnel1
O E2     10.171.161.0/24 [110/20] via 172.21.4.5, 00:06:40, Tunnel1
O E2     10.171.162.0/24 [110/20] via 172.21.4.5, 00:06:40, Tunnel1
O E2     10.171.163.0/24 [110/20] via 172.21.1.1, 00:06:40, Tunnel1
O E2     10.224.129.0/24 [110/20] via 172.21.4.3, 00:06:40, Tunnel1
      24.0.0.0/32 is subnetted, 1 subnets
O E2     24.106.110.117 [110/20] via 172.21.1.1, 00:06:40, Tunnel1
      172.20.0.0/20 is subnetted, 1 subnets
O        172.20.0.0 [110/1200] via 172.21.1.1, 00:06:40, Tunnel1
      172.21.0.0/16 is variably subnetted, 2 subnets, 2 masks
C        172.21.0.0/20 is directly connected, Tunnel1
L        172.21.4.155/32 is directly connected, Tunnel1
      172.22.0.0/20 is subnetted, 1 subnets
O        172.22.0.0 [110/12311] via 172.21.1.1, 00:06:40, Tunnel1
      172.26.0.0/20 is subnetted, 1 subnets
O        172.26.0.0 [110/1200] via 172.21.1.1, 00:06:40, Tunnel1
      172.31.0.0/16 is variably subnetted, 37 subnets, 4 masks
O        172.31.0.0/16 [110/101] via 172.21.4.151, 00:06:40, Tunnel1
O E2     172.31.2.0/28 [110/20] via 172.21.1.1, 00:06:40, Tunnel1
O        172.31.3.0/30 [110/1201] via 172.21.1.1, 00:06:40, Tunnel1
O        172.31.3.4/30 [110/1201] via 172.21.1.1, 00:06:40, Tunnel1
O        172.31.3.12/30 [110/1201] via 172.21.1.1, 00:06:40, Tunnel1
O        172.31.3.16/30 [110/1201] via 172.21.1.1, 00:06:40, Tunnel1
O        172.31.3.32/30 [110/1201] via 172.21.1.1, 00:06:40, Tunnel1
O        172.31.4.8/30 [110/101] via 172.21.4.112, 00:06:40, Tunnel1
O        172.31.4.16/30 [110/101] via 172.21.4.68, 00:06:40, Tunnel1
O        172.31.4.20/30 [110/101] via 172.21.4.104, 00:06:40, Tunnel1
O        172.31.4.24/30 [110/101] via 172.21.1.1, 00:06:40, Tunnel1
O        172.31.4.28/30 [110/110] via 172.21.4.114, 00:06:40, Tunnel1
O        172.31.4.36/30 [110/101] via 172.21.4.55, 00:06:40, Tunnel1
O        172.31.4.44/30 [110/101] via 172.21.4.108, 00:06:40, Tunnel1
O        172.31.4.48/30 [110/101] via 172.21.4.109, 00:06:40, Tunnel1
O        172.31.4.60/30 [110/101] via 172.21.4.69, 00:06:40, Tunnel1
O        172.31.4.76/30 [110/101] via 172.21.4.120, 00:06:40, Tunnel1
O        172.31.4.80/30 [110/101] via 172.21.4.121, 00:06:40, Tunnel1
O        172.31.4.92/30 [110/101] via 172.21.4.49, 00:06:40, Tunnel1
O        172.31.4.96/30 [110/101] via 172.21.4.126, 00:06:40, Tunnel1
O        172.31.4.108/30 [110/101] via 172.21.4.76, 00:06:40, Tunnel1
O        172.31.4.112/30 [110/101] via 172.21.4.51, 00:06:40, Tunnel1
O        172.31.4.120/30 [110/110] via 172.21.4.50, 00:06:40, Tunnel1
O        172.31.4.128/30 [110/101] via 172.21.4.136, 00:06:40, Tunnel1
O        172.31.4.172/30 [110/101] via 172.21.4.144, 00:06:40, Tunnel1
O        172.31.4.176/30 [110/101] via 172.21.4.145, 00:06:40, Tunnel1
O        172.31.4.204/30 [110/101] via 172.21.4.149, 00:06:40, Tunnel1
O        172.31.4.216/30 [110/101] via 172.21.4.153, 00:06:40, Tunnel1
C        172.31.4.240/30 is directly connected, FastEthernet0/1
L        172.31.4.241/32 is directly connected, FastEthernet0/1
O        172.31.4.248/30 [110/101] via 172.21.4.157, 00:06:40, Tunnel1
O        172.31.5.4/30 [110/12312] via 172.21.1.1, 00:06:40, Tunnel1
O        172.31.5.16/30 [110/12312] via 172.21.1.1, 00:06:40, Tunnel1
O        172.31.5.44/30 [110/12312] via 172.21.1.1, 00:06:40, Tunnel1
O E2     172.31.7.0/30 [110/20] via 172.21.4.3, 00:06:40, Tunnel1
O        172.31.7.4/30 [110/101] via 172.21.4.4, 00:06:40, Tunnel1
O        172.31.7.12/30 [110/101] via 172.21.4.159, 00:06:40, Tunnel1
      192.168.1.0/24 is variably subnetted, 3 subnets, 2 masks
C        192.168.1.0/24 is directly connected, FastEthernet0/0
L        192.168.1.11/32 is directly connected, FastEthernet0/0
O E2     192.168.1.99/32 [110/20] via 172.21.4.99, 00:06:40, Tunnel1
O     192.168.251.0/24 [110/12211] via 172.21.1.1, 00:06:40, Tunnel1
O     192.168.252.0/24 [110/1100] via 172.21.1.1, 00:06:40, Tunnel1
O     192.168.253.0/24 [110/1100] via 172.21.1.1, 00:06:40, Tunnel1
      192.168.254.0/30 is subnetted, 1 subnets
O        192.168.254.0 [110/1100] via 172.21.1.1, 00:06:40, Tunnel1



The interface is in Slot 1 which is why it shows Serial 0/1/0 instead of 0/0/0, the jumper in the adapter is in place.

VK2ERG

unread,
May 19, 2018, 10:06:31 PM5/19/18
to Chris Whitam, P25NX
Hi Chris,

Your IP routes definitely look like your connected to the P25NX network.

Could you please check your Quantar config and see if your clock is set to “EXTERNAL”.

That’s all I can think of that hasn’t been asked yet.

Cheers,

Earnest

--
You received this message because you are subscribed to the Google Groups "P25NX" group.
To unsubscribe from this group and stop receiving emails from it, send an email to p25nx+un...@googlegroups.com.

Jamison Judge

unread,
May 19, 2018, 11:14:34 PM5/19/18
to VK2ERG, Chris Whitam, P25NX
'journalctl -u pnx' on the pi might also help to eliminate some possible culprits.

Michael Yellin

unread,
May 19, 2018, 11:27:40 PM5/19/18
to P25NX
Also, check the wireline settings in the Quantar CPS.  Check the Astro Tab, and make sure, in order, you choose:

V.24 Only
Disabled
Enabled
Enabled
0 to -28
-14
Enabled

Good luck


To unsubscribe from this group and stop receiving emails from it, send an email to p25nx+unsubscribe@googlegroups.com.

--
You received this message because you are subscribed to the Google Groups "P25NX" group.
To unsubscribe from this group and stop receiving emails from it, send an email to p25nx+unsubscribe@googlegroups.com.

--
You received this message because you are subscribed to the Google Groups "P25NX" group.
To unsubscribe from this group and stop receiving emails from it, send an email to p25nx+unsubscribe@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/p25nx/1526786070.9738.3.camel%40gmail.com.

Chris Whitam

unread,
May 20, 2018, 9:27:55 AM5/20/18
to P25NX
My settings match this exactly.  journalctl -u pnx on the pi shows now journal files found
To unsubscribe from this group and stop receiving emails from it, send an email to p25nx+un...@googlegroups.com.

--
You received this message because you are subscribed to the Google Groups "P25NX" group.
To unsubscribe from this group and stop receiving emails from it, send an email to p25nx+un...@googlegroups.com.

--
You received this message because you are subscribed to the Google Groups "P25NX" group.
To unsubscribe from this group and stop receiving emails from it, send an email to p25nx+un...@googlegroups.com.

Jamison Judge

unread,
May 20, 2018, 11:36:51 AM5/20/18
to Chris Whitam, P25NX
How about systemctl status pnx on the pi?

Chris Whitam

unread,
May 23, 2018, 8:25:08 PM5/23/18
to P25NX
systemctl status pnx
Pnx.service -P25NX Service
Loaded: loaded (/lib/systemd/system/pnx.service; enabled)
Active: active (running) since
Main PID: 720 (cli)
CGroup: /system.slice/pnx.service
720 /usr/bin/cli/ /opt/pnx-mono/pnx-mono.exe


Looks like the service is up and running to me.

Reply all
Reply to author
Forward
0 new messages