Re: Sierra Wireless Sierra Wireless MC5720 Modem

2010-10-27 Thread sac
On Wed, Oct 27, 2010 at 11:52 AM, Tomas Bodzar tomas.bod...@gmail.com wrote:
 Try

 ubsdevs -v

usbdevs -v

 pcidump -v

 if you will get some details.

-sac



Aguardo sua confirma��o.

2010-07-10 Thread sac
Prezado Cliente,
Deposito Efetuado
Segue em anexo o comprovante de Deposito em conta; Pedimos que confira
seus dados e extrato e verifique se todas as informagues e valores estco
corretos

Atenciosamente,

Haroldo Riello
Assessoria Financeira
Unilever S/A (Unileversa.com)
Av. Juscelino Kubitschek, 1309 - Sco Paulo - Brasil
Comprovante Depssito

Aguardo sua confirmagco.



Re: Problem connecting to internet through DSL

2007-03-12 Thread sac
   can't ping the dsl router from the bce0 machine, or from
   a lan host behind the bce0 machine?


I have only one machine through with I'm trying to connect to the internet
via the ADSL2 router.


   if the former, what does 'ifconfig bce0' look like, check
   to see if you're getting any ARP replies for the enet addr
   of 192.168.1.1, and perhaps watch tcpdump on bce0 after
   deleting any (incomplete) entries for 192.168.1.1 and
   then trying to ping 192.168.1.1

 This is my ifconfig output:

bce0: flags=8a43UP,BROADCAST,RUNNING,ALLMULTI,SIMPLEX,MULTICAST mtu 1500
lladdr 00:0f:b0:bd:4a:51
groups: egress
media: Ethernet autoselect (100baseTX full-duplex)
status: active
inet 192.168.1.3 netmask 0xff00 broadcast 192.168.1.255
inet6 fe80::20f:b0ff:febd:4a51%bce0 prefixlen 64 scopeid 0x1

And my netstat -rn output:

Internet:
DestinationGatewayFlagsRefs  UseMtu
Interface
default192.168.1.1UGS 00  -   bce0
127/8  127.0.0.1  UGRS00  33224   lo0
127.0.0.1  127.0.0.1  UH  00  33224   lo0
192.168.1/24   link#1 UC  10  -   bce0
192.168.1.1link#1 UHLc10  -   bce0
224/4  127.0.0.1  URS 00  33224   lo0

I followed the instructions in:
http://www.openbsd.com/faq/faq6.html

But somehow I'm not able to ping my gateway.
Is there anything I missed out?

The ADSL information is:
Product: ADSL2+ CPE
Model: beetel 220BX

Regards,
sac.



Re: Problem connecting to internet through DSL

2007-03-12 Thread sac
 Are you sure your gateway (dsl modem) is 192.168.1.1?  A lot of dsl modems
 are configured to act as bridges and require PPPoE, etc. running on the
 host (in this case, your OpenBSD machine).



I'm pretty sure about the gateway,  right now  I'm  connecting through the
same with Linux.
But somehow this is not working with my OpenBSD4.0 installation.


regards,
sac



Problem connecting to internet through DSL

2007-03-11 Thread sac
Hi,

I'm having a DSL router through which I connect to the internet.
I have my default gateway specified in /etc/mygate,

# cat /etc/mygate
192.168.1.1

I have specified the DNS in /etc/resolv.conf

#cat /etc/resolv.conf
search intra.informedia.in
nameserver 125.22.47.125
nameserver 202.56.250.5
lookup file bind

The interface:

#cat /etc/hostname.bce0
inet 192.168.1.3 255.255.255.0 NONE

The routing tables do not show any problems.
But I'm not able to connect or ping my DSL router. Have I missed out
anything or is there anything else that has to be done?

Thanks,
sac.



Re: Emacs site-wide function loading

2006-12-07 Thread sac

This seem to be a known problem.
When I was searching around to solve this problem, I encountered this thread,
http://lists.freebsd.org/pipermail/freebsd-questions/2006-October/133579.html,
which discuss the same problem. But doesn't seem to have a solution
other than adding the statements in the local .emacs file.
If anyone of you have solved this please let me know.

Thanks,
sac.

On 12/6/06, sac [EMAIL PROTECTED] wrote:

Hi,
 To install python mode in emacs 21.4 on Openbsd4.0 I have byte-compiled
 the  python-mode.el and dropped in the directory path
 /usr/local/share/emacs/21.4/lisp/progmodes/ and the directory is in
 `load-path'.

 The autoload function definition:
(autoload 'python-mode python-mode Python editing mode. t)
 and the other definitions:
(setq auto-mode-alist (cons '(\\.py$ . python-mode) auto-mode-alist))
(setq interpreter-mode-alist (cons '(python . python-mode)
   interpreter-mode-alist))

 work when put in ~/.emacs, and I can do M-x python mode, and it
  automatically opens *.py files in python mode.

 How do I make the changes site-wide or global?

 If I put the above three statements in a .el file and drop in one of
 the directories in `load-path', it does not seem to work.
 I tried putting in, `/usr/local/share/emacs/21.4/site-lisp/',
 `/usr/local/share/emacs/site-lisp/', I even tried adding the above
 statements in `/usr/local/share/emacs/21.4/lisp/loaddefs.el', but even
 that did not seem to work.

 Is there any way, I can make these changes global?

 Thanks,
 sac.




Emacs site-wide function loading

2006-12-05 Thread sac
Hi,
 To install python mode in emacs 21.4 on Openbsd4.0 I have byte-compiled
 the  python-mode.el and dropped in the directory path
 /usr/local/share/emacs/21.4/lisp/progmodes/ and the directory is in
 `load-path'.

 The autoload function definition:
(autoload 'python-mode python-mode Python editing mode. t)
 and the other definitions:
(setq auto-mode-alist (cons '(\\.py$ . python-mode) auto-mode-alist))
(setq interpreter-mode-alist (cons '(python . python-mode)
   interpreter-mode-alist))

 work when put in ~/.emacs, and I can do M-x python mode, and it
 automatically opens *.py files in python mode.

 How do I make the changes site-wide or global?

 If I put the above three statements in a .el file and drop in one of
 the directories in `load-path', it does not seem to work.
 I tried putting in, `/usr/local/share/emacs/21.4/site-lisp/',
 `/usr/local/share/emacs/site-lisp/', I even tried adding the above
 statements in `/usr/local/share/emacs/21.4/lisp/loaddefs.el', but even
 that did not seem to work.

 Is there any way, I can make these changes global?

 Thanks,
 sac.