2002年11月18日(月)


昼飯

会社の前で売ってるお弁当。オムハヤシ+サラダ+味噌汁。500円なり。

晩飯

松屋でカレーライス+サラダ

FreeBSDをADSLにつなげる(ppp.confの設定)

昨日インストールしたFreeBSD4.6.2を、ADSLに接続しようと設定。

ppp.confの設定がちゃってたみたい。natの部分を"yes"にしていたのを、"no"に変えた(コメント文にした)らできた。今までだと、ppp が PPP になって初めて繋がってたのに、ADSLだと ppp のままなのね。不思議だー。

ちうか、なんもしなくてもつながっとるやん。ちょ便利(^^)

設定したファイルをここにおきます。

-----------------------------------

#################################################################
# PPP  Sample Configuration File
# Originally written by Toshiharu OHNO
# Simplified 5/14/1999 by wself@cdrom.com
#
# See /usr/share/examples/ppp/ for some examples
#
# $FreeBSD: src/etc/ppp/ppp.conf,v 1.2.2.5 2001/07/13 10:55:23 brian Exp
$
#################################################################

default:

 set device PPPoE:rl0
 set log Phase Chat LCP IPCP CCP tun command

# ident user-ppp VERSION (built COMPILATIONDATE)

 # Ensure that "device" references the correct serial port
 # for your modem. (cuaa0 = COM1, cuaa1 = COM2)

 set speed sync
 set MRU 1454
 set MTU 1454
 set ctsrts off
 set timeout 0
 accept CHAP
 add default HISADDR
 enable tcpmssfix
 enable dns
 set ifaddr 10.0.0.1/0 10.0.0.2/0 255.255.255.0 0.0.0.0
# nat enable yes
 set dial
 set login

#papchap:
 #
 # edit the next three lines and replace the items in caps with
 # the values which have been assigned by your ISP.
 #

wakwak:
 set authname hogehoge
 set authkey funifuni

# set ifaddr 10.0.0.1/0 10.0.0.2/0 255.255.255.0 0.0.0.0
# add default HISADDR                   # Add a (sticky) default route

#install:
# set speed 8000000
# set device /dev/cuaa0
# set ifaddr 0 0 255.255.255.0 0.0.0.0
# add! default HISADDR
# set timeout 0
# enable dns
# set log local phase

-----------------------------------------



generated by makediary-2.9