Re: Personal Recommendations for Free List Compatible Email Service

2014-04-21 Thread Xiánwén Chén
Hi Patrick,

Why not just a second Gmail account for various lists?

Kind regards,

Xianwen


Re: Ad-Hoc Configuration

2014-04-20 Thread Xiánwén Chén
Anubhav, thank you for the tip. Unfortunately, the two WiFi adapters on my
laptop do not support AP mode either. However, I did find the script
interesting. I followed the web page you provided, and went back to the
original post which inspired the script you suggested, which is here:
http://forum.xda-developers.com/showthread.php?t=2009381
From that page, I learned how to enable NAT forwarding. So now my cellphone
can access internet through my laptop, which the laptop is set in Ad-Hoc
mode.

Ralf, you are not hijacking anything. Ralex bud.

Gian, than you for the help. However, since my WiFi adapters do not support
AP mode, I guess hostapd is not for my laptop in this case.

Cheers,

Xianwen


On Sun, Apr 20, 2014 at 1:06 PM, Ralf Mardorf ralf.mard...@alice-dsl.netwrote:

 On Sat, 2014-04-19 at 23:27 +0530, Anubhav Yadav wrote:
  Download the ap-hotspot deb package here
 
 https://launchpad.net/~nilarimogard/+archive/webupd8/+sourcepub/3958646/+listing-archive-extra
 
  More info about the script can be found here.
 
 http://www.webupd8.org/2013/06/how-to-set-up-wireless-hotspot-access.html

 Thank you,

 I'm not the OP and don't want to capture the thread, but I guess it's
 ok, since it's the same issue.

 After startup the LED of my USB Wi-Fi should flash, it did when I used
 *buntu, but doesn't for my Debian install.

 root@debi386:/home/rocketmouse# uname -a
 Linux debi386 3.2.0-4-rt-686-pae #1 SMP PREEMPT RT Debian 3.2.54-2 i686
 GNU/Linux
 root@debi386:/home/rocketmouse# lsusb | grep WLAN
 Bus 001 Device 004: ID 0bda:8172 Realtek Semiconductor Corp. RTL8191SU
 802.11n WLAN Adapter
 root@debi386:/home/rocketmouse# dpkg -l firmware-realtek | grep ii
 ii  firmware-realtek  0.36+wheezy.1  all  Binary firmware for Realtek
 wired and wireless network adapters
 root@debi386:/home/rocketmouse# ap-hotspot start
 Your wireless card does not support Access Point mode
 root@debi386:/home/rocketmouse#

 Regards,
 Ralf


 --
 To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org
 with a subject of unsubscribe. Trouble? Contact
 listmas...@lists.debian.org
 Archive: https://lists.debian.org/1397992006.713.5.camel@archlinux




Ad-Hoc Configuration

2014-04-19 Thread Xiánwén Chén
Hi everyone,

I'm trying to configure an Ad-Hoc network on my laptop for my cellphone.

The laptop connects to the university WiFi network through wlan1. The
university WiFi network authorizes access through MAC address. Therefore,
my cellphone cannot connect to the university WiFi network.

I've created an Ad-Hoc network with laptop's wlan0, which is configured as:

auto wlan0
iface wlan0 inet static
address 192.168.10.1
netmask 255.255.255.0
wireless-channel 1
wireless-essid chen
wireless-mode ad-hoc
wireless-key somepasswd

I've also set up an isc-dhcp-server, which listens only to wlan0. The
subnet is configured as:

subnet 192.168.10.0 netmask 255.255.255.0 {
   authoritative;
   range 192.168.10.2 192.168.10.254;
   default-lease-time 3600;
   max-lease-time 3600;
   option subnet-mask 255.255.255.0;
   option broadcast-address 192.168.10.255;
   option routers 192.168.10.1;
   option domain-name-servers 8.8.8.8;
   option domain-name aann.tk;
}

So mycell can now connect to the ad-hoc network. I can ping the cellphone
from the laptop. However, the cellphone cannot access internet. I tried to
bridge wlan0 and wlan1, but failed. Apparently wireless interfaces cannot
be bridged.

My question is this. How can I configure the network on my laptop so my
cellphone can access internet?

Thank you in advance!

Kind regards,

Xianwen