Forum     

Go Back   Digit Technology Discussion Forum > Software > Open Source
Register FAQ Calendar Mark Forums Read

Open Source A place where you can talk to like-minded people about the fastest growing software movement today! Discuss anything and everything about Open Source software and Operating Systems.

Closed Thread
 
LinkBack Thread Tools Display Modes
Old 08-08-2008, 05:26 PM   #1 (permalink)
Married!
 
Rahim's Avatar
 
Join Date: Apr 2007
Location: Calcutta
Posts: 1,515
Default Help me setup Dataone in Sabayon 1.1 Pro Edition | Firewall

Brothers i have installed Sabayon 1.1 Pro Edition in my office PC. I used pppoe-setup to configure my Dataone and entered correct values ( have used this in Fedora & Arch too).
I connect twith pppoe-start and and did ifconfig and found ppp0 connected.
But i am not able to open any site (used firefox & konqueror). So i thought may Kmyfirewall is blocking me so i uninstalled it and reconfigured Dataone and this time chose "1" as firewall setup in pppoe-setup but the problem persists.
SO i came back to Arch setup and used pppoe-setup and everything was fine.
I read Gentoo Network wiki and all stuff but it just doent work, though it connects as shown by o/p of ifconfig below
Quote:
ppp0 Link encapoint-to-Point Protocol
inet addr:59.93.206.119 P-t-P:59.93.192.1 Mask:255.255.255.255
UP POINTOPOINT RUNNING NOARP MULTICAST MTU:1492 Metric:1
RX packets:3045 errors:0 dropped:0 overruns:0 frame:0
TX packets:2795 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:3
RX bytes:2514542 (2.3 Mb) TX bytes:638401 (623.4 Kb)

eth0 Link encap:Ethernet HWaddr 00:11:11:0D:5EB
inet addr:192.168.1.2 Bcast:192.168.1.255 Mask:255.255.255.0
UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1
RX packets:3132 errors:0 dropped:0 overruns:0 frame:0
TX packets:2910 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:1000
RX bytes:2588074 (2.4 Mb) TX bytes:708072 (691.4 Kb)

lo Link encap:Local Loopback
inet addr:127.0.0.1 Mask:255.0.0.0
UP LOOPBACK RUNNING MTU:16436 Metric:1
RX packets:96 errors:0 dropped:0 overruns:0 frame:0
TX packets:96 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:0
RX bytes:6000 (5.8 Kb) TX bytes:6000 (5.8 Kb)
I am sure it some firewall jhol-jhaal, so how should i go about stopping iptables and configure Datone.
I can ping my router (utstar200R)
Plz help
__________________
|| GNU/Linux User || PCLOS KDE 4.6 || 17" DELL Studio ||

topdocumentaryfilms.com

Last edited by Rahim; 09-08-2008 at 10:47 AM.
Rahim is offline  
Advertisements. Register and be a member of the community to get rid of them.
Advertisement

Old 08-08-2008, 06:24 PM   #2 (permalink)
18 Till I Die............
 
Join Date: Jul 2004
Location: India, Mumbai, Marine Lines
Posts: 5,792
Default Re: Help me setup Dataone in Sabayon 1.1 Pro Edition | Firewall

Check iptables rules
Code:
iptables -L
Remove a service from startup
Code:
rc-config delete <servicename> default
Why is there an address associated with eth0, if I remember correctly, if you're using ppp then eth0 will not have any address.
__________________
http://www.bash.org/?258908
mehulved is offline  
Old 08-08-2008, 07:59 PM   #3 (permalink)
Married!
 
Rahim's Avatar
 
Join Date: Apr 2007
Location: Calcutta
Posts: 1,515
Default Re: Help me setup Dataone in Sabayon 1.1 Pro Edition | Firewall

This is my iptables -L o/p
Quote:
iptables -L
Chain INPUT (policy ACCEPT)
target prot opt source destination

Chain FORWARD (policy ACCEPT)
target prot opt source destination

Chain OUTPUT (policy ACCEPT)
target prot opt source destination
I dont know anything about iptables.

What is the purpose of the removing the service and what service to remove??
Will that revert iptables service to default?
__________________
|| GNU/Linux User || PCLOS KDE 4.6 || 17" DELL Studio ||

topdocumentaryfilms.com
Rahim is offline  
Old 08-08-2008, 08:30 PM   #4 (permalink)
18 Till I Die............
 
Join Date: Jul 2004
Location: India, Mumbai, Marine Lines
Posts: 5,792
Default Re: Help me setup Dataone in Sabayon 1.1 Pro Edition | Firewall

There are no iptables rules. It's not a firewall problem then. Start looking towards your network setup.
__________________
http://www.bash.org/?258908
mehulved is offline  
Old 09-08-2008, 10:45 AM   #5 (permalink)
Married!
 
Rahim's Avatar
 
Join Date: Apr 2007
Location: Calcutta
Posts: 1,515
Default Re: Help me setup Dataone in Sabayon 1.1 Pro Edition | Firewall

I was fiddling in the Live Mode and used this as PPP configuration
Quote:
Basic Setup File: /etc/conf.d/net
config_eth0=( "null" )

config_ppp0=( "ppp" )
link_ppp0="eth0"
plugins_ppp0=( "pppoe" )

username_ppp0='your-ISP-username-here'
password_ppp0='your-ISP-password-here'

pppd_ppp0=(

"noauth"
"defaultroute"
"usepeerdns"
"default-asyncmap"
"ipcp-accept-remote"
"ipcp-accept-local"
"lcp-echo-interval 15"
"lcp-echo-failure 3"
"mru 1492"
"mtu 1492"
"debug"
)
but it didnt work. SO i used this
Quote:
config_eth0=( "dhcp" )
dhcp_eth0="release nodns nontp nonis nogateway nosendhost"
and started the connection /etc/conf.d/net.ppp0 start and after some seconds i was able to connect and surf

But when i used the same procedure in the actual installed-system, it did the same tantrums. Getting connected but no luck with surfing .The light on my modem blinks as if data is passing through but....
__________________
|| GNU/Linux User || PCLOS KDE 4.6 || 17" DELL Studio ||

topdocumentaryfilms.com
Rahim is offline  
Old 09-08-2008, 03:28 PM   #6 (permalink)
18 Till I Die............
 
Join Date: Jul 2004
Location: India, Mumbai, Marine Lines
Posts: 5,792
Default Re: Help me setup Dataone in Sabayon 1.1 Pro Edition | Firewall

You either configure to use ppp or dhcp, not both.
Can you explain how you configure your connection in other distros?
Also check route
Code:
route -n
And try pinging the available gateway(s).
__________________
http://www.bash.org/?258908
mehulved is offline  
Old 09-08-2008, 03:38 PM   #7 (permalink)
Wahahaha~!
 
Faun's Avatar
 
Join Date: Dec 2006
Location: Pune/there
Posts: 7,109
Default Re: Help me setup Dataone in Sabayon 1.1 Pro Edition | Firewall

or
Quote:
netstat -r
__________________
Steam/Flickr: psygeist
Spoiler:
Asus Z68 V-Pro|i5 2500k|TRUE Black|Ripjaws X+Corsair Vengeance|U2311H|N560GTX|D7000|XONAR STX|RE272|RE0|CC51|XE200PRO Walnut| TD II V2| Ultraphile|N5800

Mono
Faun is online now  
Old 09-08-2008, 08:14 PM   #8 (permalink)
Married!
 
Rahim's Avatar
 
Join Date: Apr 2007
Location: Calcutta
Posts: 1,515
Default Re: Help me setup Dataone in Sabayon 1.1 Pro Edition | Firewall

Well i used pppoe-setup in my Arch Linux box, so i tried that in Sabayon and then did the Modular Networking way as described in Gentoo Wiki and it did work ONCE in Live Mode but thats it.

@mehulved: So what changes should i do in those files??
__________________
|| GNU/Linux User || PCLOS KDE 4.6 || 17" DELL Studio ||

topdocumentaryfilms.com

Last edited by Rahim; 09-08-2008 at 09:06 PM.
Rahim is offline  
Old 10-08-2008, 01:21 AM   #9 (permalink)
18 Till I Die............
 
Join Date: Jul 2004
Location: India, Mumbai, Marine Lines
Posts: 5,792
Default Re: Help me setup Dataone in Sabayon 1.1 Pro Edition | Firewall

remove the last couple of lines related to eth0, it shouldn't be configured.
Maybe you haven't added ppp0 in the list of network interfaces to be started at boot up?
__________________
http://www.bash.org/?258908
mehulved is offline  
Closed Thread

Bookmarks

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
How To Setup BSNL Dataone in OpenSuse 11.0? Rahim Open Source 2 19-09-2008 12:12 PM
How to setup your neighbors or friends modem from your home. (Bsnl dataone) tharun518 Chit-Chat 1 16-05-2007 10:14 AM
Wifi setup on Dataone Type IV modem Rollercoaster Software Q&A 3 16-05-2006 07:39 PM
How to setup DataOne access in SuSE 9.2 Professional? sourav123 Open Source 15 29-12-2005 06:31 AM
Dataone Broadband : want to setup login & password. How..? tkprakash Broadband and DTH 3 03-10-2005 07:42 PM


All times are GMT +5.5. The time now is 09:34 PM.


Powered by vBulletin® Version 3.8.7
Copyright ©2000 - 2012, vBulletin Solutions, Inc.

Search Engine Optimization by vBSEO 3.3.2