LinuxQuestions.org
Help answer threads with 0 replies.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Slackware
User Name
Password
Slackware This Forum is for the discussion of Slackware Linux.

Notices


Reply
  Search this Thread
Old 10-01-2012, 05:11 PM   #1
Hallofo
LQ Newbie
 
Registered: Oct 2012
Location: Peoples Socialist Republic of Kalifornia
Distribution: Ubuntu and Slackware
Posts: 3

Rep: Reputation: Disabled
Question Slackware networking and printing issuse


Hi all, first post, so be gentle if I'm asking the wrong question in the wrong place.

I am somewhat "semi-n00b" with Linux; I know my way around the command prompt, and have build my own Ubuntu LAMP server for fun. These issues have me stumped though.

Here is the situation:

- Existing Slackware server (12.something I think), it looks like KDE might have been installed, but if it was, it's not coming up.

- Network connectivity to the local subnet only, no joy pinging google via DNS name or IP.

- I cannot nuke/pave, there are expensive custom applications that cannot be re installed due to licensing issues.

- CUPS might solve mt issues, but with no GUI to manage it from, I'm still stuck

- IPTABLES is installed, but I disabled the start-up. This used to be a DMZ/Web/File/Etc.. server, now it just hosts a single app inside an existing firewall.

- The previous tech was a die-hard tinker. If it could be changed, he did it. With no documentation. Over the course of several years. Unfortunately for all involved, he recently passed away, making asking questions rather difficult.

The desired end-state is this:

- Remote management via SSH
- Local printing to a USB Dot-Matrix printer
- Solid backups

Thanks in advance! I know there are many things I need to add, I'm just not sure what they are. So fire away with your questions and I'll do my best to answer.
 
Old 10-01-2012, 08:53 PM   #2
frankbell
LQ Guru
 
Registered: Jan 2006
Location: Virginia, USA
Distribution: Slackware, Ubuntu MATE, Mageia, and whatever VMs I happen to be playing with
Posts: 19,326
Blog Entries: 28

Rep: Reputation: 6142Reputation: 6142Reputation: 6142Reputation: 6142Reputation: 6142Reputation: 6142Reputation: 6142Reputation: 6142Reputation: 6142Reputation: 6142Reputation: 6142
Have you tried invoking X from the command line with the command startx? That is the default Slackware way of starting X.

You could also post the output of ifconfig -a, making sure to enclose in in "code" tags, which become available when you click "Go Advanced" down there at the bottom of the Quick Reply window, and telling us more about your network connection the to internet. The "code" tags make the pasted content much easier to read.

Here's a link to the Slackbook's section on networking in Slackware: http://www.slackbook.org/html/book.h...-CONFIGURATION

It's a little old, but still basically accurate.
 
Old 10-02-2012, 04:39 AM   #3
padeen
Member
 
Registered: Sep 2009
Location: Perth, W.A.
Distribution: Slackware, Debian, Gentoo, FreeBSD, OpenBSD
Posts: 208

Rep: Reputation: 41
If you have network connectivity but no internet, it could either be a firewall or a gateway problem.

What is the output of the following:
Code:
ifconfig
route
ip -4 route show
iptables -L
cat /etc/resolv.conf
and, if you have IPv6, the equivalents for that protocol:
ip -6 route show
ip6tables -L
Then we can see if the machine doesn't know where the gateway is, or perhaps the gateway is blocking it.

Re printing, setting up CUPS is pretty straightforward on a local network. What's the issue with it?
 
1 members found this post helpful.
Old 10-02-2012, 07:06 AM   #4
elesmod
Member
 
Registered: Sep 2012
Distribution: Slackware
Posts: 88

Rep: Reputation: Disabled
Cups gui

If you can't get into a desktop environment, you can configure CUPS in a text browser.

Code:
lynx http://localhost:631
or
Code:
links http://localhost:631
 
Old 10-02-2012, 12:20 PM   #5
Hallofo
LQ Newbie
 
Registered: Oct 2012
Location: Peoples Socialist Republic of Kalifornia
Distribution: Ubuntu and Slackware
Posts: 3

Original Poster
Rep: Reputation: Disabled
Thanks everyone for the insight, here is my code output:

ifconfig for eth1 (the connected interface)
Code:
eth1      Link encap:Ethernet  HWaddr 00:26:18:58:23:ca
          inet addr:192.168.1.50  Bcast:192.168.1.255  Mask:255.255.255.0
          inet6 addr: fe80::226:18ff:fe58:23ca/64 Scope:Link
          UP BROADCAST RUNNING MULTICAST  MTU:1500  Metric:1
          RX packets:3915 errors:0 dropped:0 overruns:0 frame:0
          TX packets:9986 errors:0 dropped:0 overruns:0 carrier:0
          collisions:0 txqueuelen:1000
          RX bytes:297898 (290.9 KiB)  TX bytes:1560437 (1.4 MiB)
          Interrupt:17
Route
Code:
Destination     Gateway         Genmask         Flags Metric Ref    Use Ifa
64.183.70.209   *               255.255.255.255 UH    0      0        0 eth0
64.183.70.208   *               255.255.255.248  U     0      0        0 eth0
192.168.1.0       *               255.255.255.0      U     0      0        0 eth1
loopback           *               255.0.0.0              U     0      0        0 lo
ip -4 route show

Code:
64.183.70.209 dev eth0  scope link
64.183.70.208/29 dev eth0  proto kernel  scope link  src 64.183.70.210
192.168.1.0/24 dev eth1  proto kernel  scope link  src 192.168.1.50
127.0.0.0/8 dev lo  scope link
iptables -L

Code:
hain 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
cat /etc/resolv.conf

Code:
search VCOMS.net
ip -6 route show

Code:
fe80::/64 dev eth0  proto kernel  metric 256  mtu 1500 advmss 1440 hoplimit 0
fe80::/64 dev eth1  proto kernel  metric 256  mtu 1500 advmss 1440 hoplimit 0
ff00::/8 dev eth0  metric 256  mtu 1500 advmss 1440 hoplimit 0
ff00::/8 dev eth1  metric 256  mtu 1500 advmss 1440 hoplimit 0
ip6tables -L

Code:
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

Thanks all again for the help, hopefully there is a simple "ah HA" thing that I missed.

Elesmod: going to try this now.
 
Old 10-02-2012, 08:37 PM   #6
frankbell
LQ Guru
 
Registered: Jan 2006
Location: Virginia, USA
Distribution: Slackware, Ubuntu MATE, Mageia, and whatever VMs I happen to be playing with
Posts: 19,326
Blog Entries: 28

Rep: Reputation: 6142Reputation: 6142Reputation: 6142Reputation: 6142Reputation: 6142Reputation: 6142Reputation: 6142Reputation: 6142Reputation: 6142Reputation: 6142Reputation: 6142
The gateway configuration doesn't look right to me. In my system, it's 192.168.1.1 rather than 192.168.1.0.

Code:
$ cat /etc/network/interfaces
# This file describes the network interfaces available on your system                                                       
# and how to activate them. For more information, see interfaces(5).                                                        
                                                                                                                            
# The loopback network interface
auto lo
iface lo inet loopback

# The primary network interface
allow-hotplug eth0
iface eth0 inet static
address 192.168.1.5
netmask 255.255.255.0
gateway 192.168.1.1

auto eth0
#

Last edited by frankbell; 10-02-2012 at 08:38 PM.
 
1 members found this post helpful.
Old 10-03-2012, 11:57 AM   #7
Hallofo
LQ Newbie
 
Registered: Oct 2012
Location: Peoples Socialist Republic of Kalifornia
Distribution: Ubuntu and Slackware
Posts: 3

Original Poster
Rep: Reputation: Disabled
Well, with your help I was able to figure out a couple issues.

Frankbell: the gateway was correct, I have it coded in the /etc/rc.d/rc.inet1 file. The routing table below just lists the network 192.168.1.x as 192.168.1.0. Good eye though, because that's what got me thinking about routing.

The problem with access to any (other than local) networks was that the old routing table was still being loaded - I commented all that out and added a new default route to the Gateway at 192.168.1.1 and bam, online!

Of course, Murphy showed up and the client's DSL router started taking a poop a few minutes later. Seriously, maybe 10 minutes after I get all this figured out and online, his router starts going down. I can ping it for a few seconds, then it goes down. Just up and down, not a solid "broken". He has called the ISP and they are sending out a tech today. Until then, I can't work on the printer. Grrrrr.

Side though: I don't think I could have caused the network issue with a new default route. I've never run into that in my experience or training (I'm a CCNA, among other things). Hmmm. Food for thought at least.
 
  


Reply



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 Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
Install issuse on ASUS G60JX Ezekeiil Linux - Laptop and Netbook 0 05-30-2011 03:46 PM
Cups Networking issue delayed printing. anonymousd Linux - Networking 3 01-22-2007 07:35 AM
Yast2 Security issuse form command line Andrew Sorensen SUSE / openSUSE 4 06-10-2006 05:00 AM
strange nfs mounting issuse triXlife Linux - Networking 1 04-26-2006 08:26 PM
Kernel issuse installing NVIDIA drivers on Suse 8.2 steve1401 Linux - Hardware 7 06-06-2003 02:30 AM

LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Slackware

All times are GMT -5. The time now is 09:27 PM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration