cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
smiclean
New Contributor

beginner issue with connecting AD tran to network

I am a bit confuse on how to confiure ad tran 908e 3rd gen to forward dhcp requests to our server.  I currently have our dhcp server set up on a switch.  The ad tran is on another switch with gateway of xxx.xxx.4.1.  set up udp relay to point to the dhcp server ip address using bootps. 

What I do not quite get is how to configure the eth0/1 port to connect over to the the other switch or what routing I might need.

Any suggestions would help.

Thanks.

0 Kudos
7 Replies
Anonymous
Not applicable

Re: beginner issue with connecting AD tran to network

Have you looked at this yet:

https://supportforums.adtran.com/docs/DOC-6440

-Mark

Re: beginner issue with connecting AD tran to network

Very helpful for setting up relay.  Thanks.  As far as setting up the eth 0/1 interface does its IP need to be the same as the the one the dhcp is on?  For example if my dhcp server is on 10.0.0.0 network does my interface need to have an address of 10.0.0.?.  this is a simple ptp setup for testing the dhcp relay capabilities.  so the dhcp is on its own switch and the ad tran and a lone pc on another.

Thanks

Anonymous
Not applicable

Re: beginner issue with connecting AD tran to network

The whole point of using DHCP relay is that your DHCP is on a different logical network. So eth 0/1 needs to be a different network like 172.16.10.0/24. Then you can put the DHCP server upstream from the ADTRAN on the 10.0.0.0/24 network out the T1 or other Eth interface.

Does that make sense?

-Mark

Re: beginner issue with connecting AD tran to network

Ok I have tried everything I can to get the dhcp relay to work but with no success.  I have simplified my setup but still need help.  I have the gig 0/1 interface set at 10.10.2.1,  I have the eth 0/1 interface set for 10.10.0.254.  the Dhcp server is connected directly to the eth 0/1 and has an IP of 10.10.0.207.  I plug my laptop into the gig 0/1 port and it cannot get an ip address from dhcp.  I have set the relay on both interfaces no success.  Any suggestions?

Thanks

Steve

Anonymous
Not applicable

Re: beginner issue with connecting AD tran to network

Post config

-Mark

Re: beginner issue with connecting AD tran to network

I changed the IP addresses for confidential reasons.

!

!

! ADTRAN, Inc. OS version R10.9.6.E

! Boot ROM version R10.9.3.B2

! Platform: Total Access 908e (3rd Gen), part number 4243908F1

! Serial number CFG1508149

!

!

hostname "TA908e"

enable password password

!

!

clock timezone -7-Mountain-Time

!

ip subnet-zero

ip classless

ip default-gateway 192.168.2.1

ip routing

ipv6 unicast-routing

!

!

!

!

no auto-config

!

event-history on

no logging forwarding

no logging email

!

no service password-encryption

!

username "admin" password "password"

ip forward-protocol udp time

ip forward-protocol udp nameserver

ip forward-protocol udp tacacs

ip forward-protocol udp tftp

ip forward-protocol udp netbios-ns

ip forward-protocol udp netbios-dgm

!

banner motd #

        Important 

       

SSH & Web username/password is configured to admin/password.

Enable and Telnet passwords are configured to "password".

Please change them immediately.

The gig 0/1 interface is enabled with an address of 10.10.10.1

Telnet/SSH access is also enabled.

#

!

!

no ip firewall alg msn

no ip firewall alg mszone

no ip firewall alg h323

!

!

!

!

!

!

!

!

no dot11ap access-point-control

!

!

!

!

!

!

!

!

!

!

!

!

!

ip crypto ffe

!

!

!

!

!

!

!

interface eth 0/1

  description VLAN1

  encapsulation 802.1q

  no shutdown

!

interface eth 0/1.1

  description 192.168.0.254

  vlan-id 1

  ip address 192.168.0.254  255.255.255.0

  ip mtu 1500

  no shutdown

!

interface eth 0/2

  no ip address

  shutdown

!

!

!

interface gigabit-eth 0/1

  ip address 192.168.2.1  255.255.255.0

  ip dhcp relay destination 192.168.0.207

  media-gateway ip primary

  no shutdown

!

!

!

!

interface t1 0/1

  shutdown

!

interface t1 0/2

  shutdown

!

interface t1 0/3

  shutdown

!

interface t1 0/4

  shutdown

!

!

interface fxs 0/1

  no shutdown

!

interface fxs 0/2

  no shutdown

!

interface fxs 0/3

  no shutdown

!

interface fxs 0/4

  no shutdown

!

interface fxs 0/5

  no shutdown

!

interface fxs 0/6

  no shutdown

!

interface fxs 0/7

  no shutdown

!

interface fxs 0/8

  no shutdown

!

!

!

!

!

!

!

!

!

!

!

!

no tftp server

no tftp server overwrite

http server

http secure-server

no snmp agent

no ip ftp server

no ip scp server

no ip sntp server

!

!

!

!

!

!

!

!

sip

sip udp 5060

no sip tcp

!

!

!

voice feature-mode network

voice forward-mode network

!

!

!

!

!

!

!

!

!

!

!

!

!

!

!

!

!

!

!

!

!

!

!

!

!

!

!

!

!

!

!

!

!

!

!

!

!

!

!

ip rtp symmetric-filter

!

!

!

line con 0

  no login

!

line telnet 0 4

  login

  password password

  no shutdown

line ssh 0 4

  login local-userlist

  no shutdown

!

!

!

!

!

end

Anonymous
Not applicable

Re: beginner issue with connecting AD tran to network

What is your DHCP server’s default gateway?

From your device on gig 0/1 interface, see if you can ping the dhcp server 192.168.0.207

Or from the adtran do this:

Ping 192.168.0.207 source 192.168.2.1

You need to remove this command, you put the address of the adtran:

ip default-gateway 192.168.2.1

remove it by putting no in front of it. That command is for switches not routers.

You might have a routing issue if your devices can’t ping each other.

Then remove this commands, just copy and paste into your config-t prompt, they are not needed if you have the dhcp relay command on your eth interface.

No ip forward-protocol udp time

No ip forward-protocol udp nameserver

No ip forward-protocol udp tacacs

No ip forward-protocol udp tftp

No ip forward-protocol udp netbios-ns

No ip forward-protocol udp netbios-dgm

After you make those changes, try and ping again. Let me know the results.

-Mark