old-www/HOWTO/AX25-HOWTO/x1194.html

238 lines
3.9 KiB
HTML

<HTML
><HEAD
><TITLE
>Configuring an AX.25 interface for TCP/IP</TITLE
><META
NAME="GENERATOR"
CONTENT="Modular DocBook HTML Stylesheet Version 1.63
"><LINK
REL="HOME"
TITLE="Linux Amateur Radio AX.25 HOWTO"
HREF="index.html"><LINK
REL="PREVIOUS"
TITLE="Configuring an AX.25 port"
HREF="x495.html"><LINK
REL="NEXT"
TITLE="Configuring a NET/ROM port"
HREF="x1218.html"></HEAD
><BODY
CLASS="SECT1"
BGCOLOR="#FFFFFF"
TEXT="#000000"
LINK="#0000FF"
VLINK="#840084"
ALINK="#0000FF"
><DIV
CLASS="NAVHEADER"
><TABLE
WIDTH="100%"
BORDER="0"
CELLPADDING="0"
CELLSPACING="0"
><TR
><TH
COLSPAN="3"
ALIGN="center"
>Linux Amateur Radio AX.25 HOWTO</TH
></TR
><TR
><TD
WIDTH="10%"
ALIGN="left"
VALIGN="bottom"
><A
HREF="x495.html"
>Prev</A
></TD
><TD
WIDTH="80%"
ALIGN="center"
VALIGN="bottom"
></TD
><TD
WIDTH="10%"
ALIGN="right"
VALIGN="bottom"
><A
HREF="x1218.html"
>Next</A
></TD
></TR
></TABLE
><HR
ALIGN="LEFT"
WIDTH="100%"></DIV
><DIV
CLASS="SECT1"
><H1
CLASS="SECT1"
><A
NAME="AEN1194"
>7. Configuring an AX.25 interface for TCP/IP</A
></H1
><P
>It is very simple to configure an AX.25 port to carry TCP/IP. If you
have KISS interfaces then there are two methods for configuring an IP
address. The <EM
>kissattach</EM
> command has an option
that allows you to specify an IP address. The more conventional method
using the <EM
>ifconfig</EM
> command will work on all
interface types.</P
><P
>So, modifying the previous KISS example:</P
><P
><TABLE
BORDER="1"
BGCOLOR="#E0E0E0"
WIDTH="100%"
><TR
><TD
><FONT
COLOR="#000000"
><PRE
CLASS="SCREEN"
># /usr/sbin/kissattach -i 44.136.8.5 -m 512 /dev/ttyS0 radio
# /sbin/route add -net 44.136.8.0 netmask 255.255.255.0 ax0
# /sbin/route add default ax0</PRE
></FONT
></TD
></TR
></TABLE
></P
><P
>to create the AX.25 interface with an IP address of <TT
CLASS="LITERAL"
>44.136.8.5</TT
> and
an <TT
CLASS="LITERAL"
>MTU</TT
> of <TT
CLASS="LITERAL"
>512</TT
> bytes. You should still use the
<EM
>ifconfig</EM
> to configure the other parameters if necessary.</P
><P
>If you have any other interface type then you use the <EM
>ifconfig</EM
> program
to configure the ip address and netmask details for the port and add a route
via the port, just as you would for any other TCP/IP interface. The following
example is for a PI card device, but would work equally well for any other
AX.25 network device:</P
><P
><TABLE
BORDER="1"
BGCOLOR="#E0E0E0"
WIDTH="100%"
><TR
><TD
><FONT
COLOR="#000000"
><PRE
CLASS="SCREEN"
># /sbin/ifconfig pi0a 44.136.8.5 netmask 255.255.255.0 up
# /sbin/ifconfig pi0a broadcast 44.136.8.255 mtu 512
# /sbin/route add -net 44.136.8.0 netmask 255.255.255.0 pi0a
# /sbin/route add default pi0a</PRE
></FONT
></TD
></TR
></TABLE
></P
><P
>The commands listed above are typical of the sort of configuration many of
you would be familiar with if you have used NOS or any of its derivatives
or any other TCP/IP software. Note that the default route might not be required
in your configuration if you have some other network device configured.</P
><P
>To test it out, try a ping or a telnet to a local host.</P
><P
><TABLE
BORDER="1"
BGCOLOR="#E0E0E0"
WIDTH="100%"
><TR
><TD
><FONT
COLOR="#000000"
><PRE
CLASS="SCREEN"
># ping -i 5 44.136.8.58</PRE
></FONT
></TD
></TR
></TABLE
></P
><P
>Note the use of the `<TT
CLASS="LITERAL"
>-i 5</TT
>' arguments to
<EM
>ping</EM
> to tell it to send pings every 5 seconds
instead of its default of 1 second.</P
></DIV
><DIV
CLASS="NAVFOOTER"
><HR
ALIGN="LEFT"
WIDTH="100%"><TABLE
WIDTH="100%"
BORDER="0"
CELLPADDING="0"
CELLSPACING="0"
><TR
><TD
WIDTH="33%"
ALIGN="left"
VALIGN="top"
><A
HREF="x495.html"
>Prev</A
></TD
><TD
WIDTH="34%"
ALIGN="center"
VALIGN="top"
><A
HREF="index.html"
>Home</A
></TD
><TD
WIDTH="33%"
ALIGN="right"
VALIGN="top"
><A
HREF="x1218.html"
>Next</A
></TD
></TR
><TR
><TD
WIDTH="33%"
ALIGN="left"
VALIGN="top"
>Configuring an AX.25 port</TD
><TD
WIDTH="34%"
ALIGN="center"
VALIGN="top"
>&nbsp;</TD
><TD
WIDTH="33%"
ALIGN="right"
VALIGN="top"
>Configuring a NET/ROM port</TD
></TR
></TABLE
></DIV
></BODY
></HTML
>