varkey said:
You would have set the arcnumber as 3089 as per my blog. That is for the GoFlex Net. For Dockstar it should be 2998.
Anyway that guide was for a normal wired connection on eth0. To make it work as a wireless hotspot you may need to install some additional packages etc.
Sent from my ZTE Blade using Tapatalk
did set arch number for dockstar
but didnt work out
so whats required for WIFI hotspot
--- Updated Post - Automerged ---
will this work for wifi share
Share your 3G Internet connection over wifi (Linux / iPod Touch) 1
from the webpage
Create the script that is going to enable your laptop to share 3G with iPod
Now, here is the script that does the job, you will have to run it as root, or with root privileges.
SCRIPT
#Enable wireless lan card, replace with your interface name.
ifconfig wlan0 up
#Configure it in Ad-Hoc mode
iwconfig wlan0 mode Ad-Hoc
#Set the ssid for your shared network
iwconfig wlan0 essid shared3G
#Assign an IP address to it, use a private one.
ifconfig wlan0 up 192.168.1.1 netmask 255.255.255.0
#Start your DHCP server, this line applies for Arch Linux, for Debian should be
#/etc/inid.d/dhcpd start
/etc/rc.d/dhcpd start
#Set the IP tables rules to run NAT
iptables --flush
iptables --table nat --flush
iptables --delete-chain
iptables --table nat --delete-chain
iptables --table nat --append POSTROUTING --out-interface ppp0 -j MASQUERADE
iptables --append FORWARD --in-interface wlan1 -j ACCEPT
#Temporaly enable IP forwarding in the Kernel
sysctl -w net.ipv4.ip_forward=1
now how to make a script ?
Adding this "!/bin/sh" will make it a executable script ?