ALT Linux Community general discussions
 help / color / mirror / Atom feed
* [Comm] Новый мастер и интернет
@ 2003-01-06 11:20 Alexey Abashev
  2003-01-06 13:14 ` Igor Solovyov
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: Alexey Abashev @ 2003-01-06 11:20 UTC (permalink / raw)
  To: community

Установил себе новый мастер, который 2.2. Очень понравился, но есть 
вопрос: при установке идет настройка модемного доступа к интернет, так 
вот как это использовать уже в работе. В дебиане есть скрипты pon и 
poff. А здесь чего делать? Сейчас использую гном (очень понравился), 
если кто знает под него звонилку или еще какие-то решения по подключению?



^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [Comm] Новый мастер и интернет
  2003-01-06 11:20 [Comm] Новый мастер и интернет Alexey Abashev
@ 2003-01-06 13:14 ` Igor Solovyov
  2003-01-06 14:49 ` Sergey A. Sholokhov
  2003-01-09 23:58 ` [Comm] " Michael Shigorin
  2 siblings, 0 replies; 4+ messages in thread
From: Igor Solovyov @ 2003-01-06 13:14 UTC (permalink / raw)
  To: community

Hi!
On Mon, 06 Jan 2003 14:20:29 +0300
Alexey Abashev <abashev@mail.ru> wrote:

> Установил себе новый мастер, который 2.2. Очень понравился, но есть 

Я пока не скачал. :-) Но тем не менее.

> вопрос: при установке идет настройка модемного доступа к интернет, так 
> вот как это использовать уже в работе. В дебиане есть скрипты pon и 
> poff. А здесь чего делать? Сейчас использую гном (очень понравился), 

Как ни странно, запустить kppp :-)

> если кто знает под него звонилку или еще какие-то решения по подключению?

Пока не знаю, что-то должно быть в пакете gnome-network, но как мне тут
уже подсказали, его пока еще не переписали под Gnome 2 :-)

-- 
Best regards!
Igor Solovyov
System/Network administrator
JSC CB "Zlatkombank", Zlatoust, Russia


^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [Comm] Новый мастер и интернет
  2003-01-06 11:20 [Comm] Новый мастер и интернет Alexey Abashev
  2003-01-06 13:14 ` Igor Solovyov
@ 2003-01-06 14:49 ` Sergey A. Sholokhov
  2003-01-09 23:58 ` [Comm] " Michael Shigorin
  2 siblings, 0 replies; 4+ messages in thread
From: Sergey A. Sholokhov @ 2003-01-06 14:49 UTC (permalink / raw)
  To: community


[-- Attachment #1.1: Type: text/plain, Size: 866 bytes --]

On Mon, Jan 06, 2003 at 02:20:29PM +0300, Alexey Abashev wrote:
>Установил себе новый мастер, который 2.2. Очень понравился, но есть 
>вопрос: при установке идет настройка модемного доступа к интернет, так 
>вот как это использовать уже в работе. В дебиане есть скрипты pon и 
>poff. А здесь чего делать? Сейчас использую гном (очень понравился), 
>если кто знает под него звонилку или еще какие-то решения по подключению?
>
не знаю есть ли в alt'е правда в сизифе всяко должно быть -)

gpppon - A gnome applet that is a wrapper around pon and poff.
gkdial - Gtk-based PPP dial-up configuration tool.
gkdial-gnome - GNOME-based PPP dial-up configuration tool.
и еще какаято была под X тоже рульная
но pon poff рульнее и что те мешает в алте это сделать.
вот покопай дебиановские.


-- 
    [ HUN7ER ]
    mail: hun7er@sutd.ru
    icq : 72994428

[-- Attachment #1.2: pon --]
[-- Type: text/plain, Size: 956 bytes --]

#!/bin/sh

case "$1" in
  -*) echo "
Usage: pon [provider] [arguments]

If pon is invoked without arguments, /etc/ppp/ppp_on_boot file will be
run, presuming it exists and is executable. Otherwise, a PPP connection
will be started using settings from /etc/ppp/peers/provider.
If you specify one argument, a PPP connection will be started using
settings from the appropriate file in the /etc/ppp/peers/ directory, and
any additional arguments supplied will be passed as extra arguments to
pppd.
"
      exit 0
      ;;
esac

if [ -z "$1" -a -x /etc/ppp/ppp_on_boot ]; then
  exec /etc/ppp/ppp_on_boot
fi

if [ -z "$1" -a ! -f /etc/ppp/peers/provider ]; then
  echo "
Please configure /etc/ppp/peers/provider or use a command line argument to
use another file in /etc/ppp/peers/ directory.
"
  exit 1
fi

if [ "$1" -a ! -f "/etc/ppp/peers/$1" ]; then
  echo "
The file /etc/ppp/peers/$1 does not exist.
"
  exit 1
fi

exec /usr/sbin/pppd call ${@:-provider}

[-- Attachment #1.3: poff --]
[-- Type: text/plain, Size: 2876 bytes --]

#!/bin/sh

# $Id: poff,v 1.8 1999/08/28 16:34:51 phil Exp $
# Written by John Hasler <john@dhh.gt.org> and based on work 
# by Phil Hands <phil@hands.com>.  Distributed under the GNU GPL

if [ -x /usr/bin/kill ]; then
  KILL="/usr/bin/kill"
else
  KILL="/bin/kill"
fi
SIG=TERM
DONE="stopped"
MODE=""

usage ()
{
   cat <<!EOF!
usage: $0 [option] [provider]
options:
  -r        Cause pppd to drop the line and redial.
  -d        Toggle the state of pppd's debug option.
  -c        Cause pppd to renegotiate compression.
  -a        Stop all pppd's.  'provider' will be ignored.
  -h        Print this help summary and exit.
  -v        Print version and exit.
  none      Stop pppd.

Options may not be combined.

If 'provider' is omitted pppd will be stopped or signalled if and only if
there is exactly one running unless the '-a' option was given.  If
'provider' is supplied the pppd controlling the connection to that
provider will be stopped or signalled.
!EOF!
}

# Get option.  If there are none replace the "?" that getopts puts in
# FLAG on error with "null".
getopts rdcavh FLAG
if [ "$?" -ne 0 ]; then
    FLAG="null"
fi

# Check for additional options.  Should be none.
getopts :rdcavh DUMMY
if [ "$?" -eq 0 ]; then
    echo "$0: Illegal option -- ${OPTARG}."
    exit 1
fi

case $FLAG in
 "r") SIG=HUP;  DONE=signalled; shift ;;
 "d") SIG=USR1; DONE=signalled; shift ;;
 "c") SIG=USR2; DONE=signalled; shift ;;
 "a") MODE="all"; shift ;;
 "v") echo "$0$Revision: 1.8 $_TrickToPrint_RCS_Revision"; exit 0 ;;
 "h") usage; exit 0 ;;
 "?") exit 1;
esac

# Get the PIDs of all the pppds running.  Could also get these from
# /var/run, but pppd doesn't create .pid files until ppp is up.
PIDS=`pidof pppd`

# poff is pointless if pppd isn't running.
if test -z "$PIDS"; then
    echo "$0: No pppd is running.  None ${DONE}."
    exit 1
fi

# Find out how many pppd's are running.
N=`echo "$PIDS" | wc -w`

# If there are no arguments we can't do anything if there is more than one
# pppd running.
if test "$#" -eq 0 -a "$N" -gt 1 -a $FLAG != "a" ; then
    echo "$0: More than one pppd running and no "-a" option and 
no arguments supplied. Nothing ${DONE}."
    exit 1
fi

# If either there are no arguments or '-a' was specified kill all the
# pppd's.
if test "$#" -eq 0 -o "$MODE" = "all" ; then
    $KILL -$SIG $PIDS || {
        echo "$0: $KILL failed.  None ${DONE}."
        exit 1
    }
    exit 0
fi

# There is an argument, so kill the pppd started on that provider.
PID=`ps axw | grep "[ /]pppd call $1 *\$" | awk '{print $1}'`
if test -n "$PID" ; then
    $KILL -$SIG $PID || {
        echo "$0: $KILL failed.  None ${DONE}."
        exit 1
    }
else
   echo "$0: I could not find a pppd process for provider '$1'. None ${DONE}."
   exit 1
fi
exit 0

[-- Attachment #2: Type: application/pgp-signature, Size: 189 bytes --]

^ permalink raw reply	[flat|nested] 4+ messages in thread

* [Comm] Re: Новый мастер и интернет
  2003-01-06 11:20 [Comm] Новый мастер и интернет Alexey Abashev
  2003-01-06 13:14 ` Igor Solovyov
  2003-01-06 14:49 ` Sergey A. Sholokhov
@ 2003-01-09 23:58 ` Michael Shigorin
  2 siblings, 0 replies; 4+ messages in thread
From: Michael Shigorin @ 2003-01-09 23:58 UTC (permalink / raw)
  To: community

On Mon, Jan 06, 2003 at 02:20:29PM +0300, Alexey Abashev wrote:
> Установил себе новый мастер, который 2.2. Очень понравился, но есть 

бета. :)

> вопрос: при установке идет настройка модемного доступа к интернет, так 
> вот как это использовать уже в работе. В дебиане есть скрипты pon и 

Скрипты -- ifup ppp0; ifdown ppp0, а звонилки уже упомянули.  Мне
больше импонирует шоткат (Ctrl-Alt-Home/End) и wmnd-0.2.2.

-- 
 ---- WBR, Michael Shigorin <mike@altlinux.ru>
  ------ Linux.Kiev http://www.linux.kiev.ua/


^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2003-01-09 23:58 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2003-01-06 11:20 [Comm] Новый мастер и интернет Alexey Abashev
2003-01-06 13:14 ` Igor Solovyov
2003-01-06 14:49 ` Sergey A. Sholokhov
2003-01-09 23:58 ` [Comm] " Michael Shigorin

ALT Linux Community general discussions

This inbox may be cloned and mirrored by anyone:

	git clone --mirror http://lore.altlinux.org/community/0 community/git/0.git

	# If you have public-inbox 1.1+ installed, you may
	# initialize and index your mirror using the following commands:
	public-inbox-init -V2 community community/ http://lore.altlinux.org/community \
		mandrake-russian@linuxteam.iplabs.ru community@lists.altlinux.org community@lists.altlinux.ru community@lists.altlinux.com
	public-inbox-index community

Example config snippet for mirrors.
Newsgroup available over NNTP:
	nntp://lore.altlinux.org/org.altlinux.lists.community


AGPL code for this site: git clone https://public-inbox.org/public-inbox.git