Slackware :: Rc.firewall File Missing?

Jul 23, 2010

im trying to setup a firewall using iptables. the problem is that i cant see my rc.firewall file in the /etc/rc.d/ folder.. i tried using Code:locate rc.local and it didnt return a result. im running a full installation slackware 13.0 and i can use /usr/sbin/iptables -L but i dont have the rc.firewall..where can i get the file?

View 8 Replies


ADVERTISEMENT

Slackware :: Slackware Rc.firewall (with Logging) Script?

Jun 6, 2011

decided to fool around making a good quality, totally configurable, firewall script for Slackware, which also logs incoming dropped packets.Just copy the code below into your favourite text editor and save the file as rc.firewall then copy it into your /etc/rc.d/ directory (as root user). After setting up the config section in the script, run these commands;

chmod 755 /etc/rc.d/rc.firewall
/etc/rc.d/rc.firewall start
Voila!

[code]....

View 14 Replies View Related

Slackware :: Missing The Flash Plugin Using Slackware 13 64bit - 2.6.29.6-smp - KDE Desktop

Apr 26, 2010

using Slackware 13 64bit, 2.6.29.6-smp, KDE desktop. i installed the flash-player-plugin using sbopkg. when i try [URL], it says i'm missing the flash plugin. i copied the. so file to

/usr/lib/mozilla/plugins
/usr/lib64/mozilla/plugins

and i still get the same result. what am i doing wrong?

View 11 Replies View Related

Slackware :: Rc.firewall Vs Iptables / Difference Between Them?

Jan 18, 2011

Does the rc.firewall script just use iptables or is that something completely different?

View 3 Replies View Related

Slackware :: Mkfs.msdos Symlink Missing In Slackware 13.0?

Feb 1, 2010

The mkfs.msdos symlink seems to be missing in Slackware 13.0 32-bits. However it is there in 64-bits. This: [URL]...e_is_mkfs.vfat

View 2 Replies View Related

Slackware :: Slackware Identifier Icon Missing

Jan 23, 2011

I am using Firefox-4.0b9 from /testing. I never deleted the old profile from 3.6x days. I just noticed that the Slackware identifier icon is now just a generic Linux icon. I checked in about:config, and the general. useragent.extra.linux string is still set to Slackware Linux.Is there something different to do for FF-4x? This isn't a real problem, just an annoying matter of pride.

View 14 Replies View Related

Networking :: Open Ports 5198/udp And 5199/udp On A Slackware Based Firewall?

Apr 20, 2010

How do I open ports 5198/udp and 5199/udp on a slackware based firewall?

View 2 Replies View Related

Slackware :: Dolphin Samba Share Firewall / Saying It Can't Find Any Workgroups On Local Network?

May 12, 2011

I just set up my firewall, and now I can't see any Samba workgroups. It says it can't find any workgroups on my local network, and it may be caused by a firewall. It is a firewall issue because if I disable my firewall, I can see the workgroup. What do I need to open on my firewall to see the workgroup? I am using Slackware64 13.37.

Here is how I set up my firewall.

Code:
iptables -P INPUT DROP
iptables -P FORWARD DROP
iptables -A INPUT -m state --state ESTABLISHED,RELATED -j ACCEPT
iptables -A INPUT -s 127.0.0.0/8 -d 127.0.0.0/8 -i lo -j ACCEPT
iptables -A INPUT -p icmp -j ACCEPT
I got the commands from here url.

View 5 Replies View Related

OpenSUSE Network :: Firewall Logs Are In /var/log/{firewall,warn,messages} - Clutter?

Mar 25, 2011

I suspect this is an initial configuration bug. All firewall logs seem to be going to all
three files. That causes a lot of clutter in the log files, and makes it difficult to see whether there are any serious problems being logged.

View 9 Replies View Related

Networking :: Setup Firewall / Sys1 Is Not Connected To Firewall For Testing Purpose?

May 18, 2010

I am learning to setup firewall in my home for that i have selected four system(sys1,sys2....sys4) for testing .I have configured sys2 to act as a firewall with two NIC. sys3 and sys4 are inside the firewall . sys1 is not connected to firewall for testing purpose.

the IP assignments are follows :

sys1 : ( fedora, not connected to firewall i am thinking, But i am not sure )

IP : 192.168.2.1 ,
gateway : blank
dns1 : blank
dns2 : blank

sys2 firewall ,IPTABLES )
code....

what happened is that sys1(not connected to firewall) can ssh to sys4(connected,inside firewall),since the rules are written not to ssh form sys1 to sys4..

then I came to know whatever the request I give, It directly goes as sys1 --> sys4. Not as sys1-----> sys2(firewall)---> sys4 .and the firewall is not filtering and processing anything for both inbound and outbound (i think it's my mistake some where). the requests are directly going inside without firewall.

View 3 Replies View Related

Software :: Build Firewall On Debian With 'Firewall Builder?

May 27, 2011

I'm trying to build firewall on Debian with 'Firewall Builder'. But it won't let me compile and run unless one interface is set as management. There are two interfaces on my computer: 'eth0' and 'lo'

I don't want to be able to configure firewall remotely, so could I use 'lo' as 'management interface'?

View 1 Replies View Related

Debian Programming :: Consolidate Several Lines Of CSV File With Firewall Rules

Oct 10, 2013

Consolidate several lines of a CSV file with firewall rules, in order to parse them easier?

I have a .csv file, which I created using an HTML export from a Check Point firewall. The objective is to have all the firewall configuration lines where a given host is present. I have to do this for a few hundred, manually is not a reasonable option. I'm going to write a simple Python script for this.

The problem is that the output from the Check Point firewall is complicated to work with. If a firewall rule works with several source or destination hosts, services or other configurations, instead of having them separated with a symbol other than a comma, I get a new line.

This prevents me from exporting the line where the host is present, since I would be missing info.

Let me show you an example, hostnames are modified, of course:

NO.;NAME;SOURCE;DESTINATION;VPN**;SERVICE;ACTION;TRACK;INSTALL ON;TIME;COMMENT
1;;fwxcluster;mcast_vrrp;;vrrp;accept;Log;fwxcluster;Any;"VRRP;;*Comment suppressed*
;;;;;igmp;;;;;
2;;fwxcluster;fwxcluster;;FireWall;accept;Log;fwxcluster;Any;"Management FWg;*Comment suppressed*
;;fwmgmpe;fwmgmpe;;ssh;;;;;
;;fwmgm;fwmgm;;;;;;;
3;NTP;G_NTP_Clients;cmm_ntpserver_pe01;;ntp;accept;None;fwxcluster;Any;*Comment suppressed*
;;;cmm_ntpserver_pe02;;;;;;;

View 0 Replies View Related

Slackware :: Missing Lua In Dev Packages?

Sep 30, 2010

just curious if there was some discussion about reasons (not)-including Lua in stock Slackware packages ? IMHO it perfectly fits to distro's KISS philosophy, is very small and packaging maintenance is very easy (only glibc dependency, simple compilation and installation proces). Slackware contains programming language implementations of Common Lisp, Guile Scheme, Ada 95 which I find more exotic then Lua in these days. I know there are some histroical reasons and keeping continuity but anyway ...

View 1 Replies View Related

Slackware :: Missing Ram On 13 (can't Remember 64 Or 32 Bit)

Jul 16, 2011

I had to restart my machine after some time (~200 days), and after the restart it had only 2 GB ram out of 6 GB (2213MB). I can't go in person to the machine..

View 11 Replies View Related

Security :: Use Iptables As Firewall Instead Of Juniper Firewall?

May 9, 2011

Can we use iptables as firewall instead of Juniper firewall

View 2 Replies View Related

Slackware :: [SBo] Minitube - Missing Mpeg4 Aac?

Nov 30, 2010

Just installed minitube v1.1 via sbopkg. Video plays but there's no sound and i get the following error message *edit* actually nothing much happens no video or sound. It just displays the title of the videos in the list without playing.Code:Phonon error: "A required codec is missing. You need to install the following codec(s) to play this content: MPEG-4 AAC" 2I have faad2 installed which is a "MPEG2 and MPEG 4 AAC decoder" but thats not listed as a dependency anyway, only QT >=4.5 which i have.On the minitube home page it suggests removing xine phono backend if there's no sound, but i'm not even sure if this is installed.

View 7 Replies View Related

Slackware :: Distlists Missing In New Addresbook?

Sep 26, 2010

Going from 13 to 13.1 I copied distlists and std.vcf from the old/.kde/share/apps/kabc to the new /.kde/share/appsEmail adresses no problem, however the distlists are missing and I can't find how to add those.Googling gave no clue until now.

View 1 Replies View Related

Slackware :: GSB Gnome 3 In 13.37 - Missing Link?

Apr 10, 2011

I checked the site but may be missing the link.. Is there a script method (like there is for 13.1) for installing GSB 3.0 in current? The site says it is available but not from where.

View 2 Replies View Related

Slackware :: Missing Dot When Compiling The UML With Graphviz

Jan 3, 2011

I'm doing a group project using some UML stuff. I tried install graphiz and it installed find but apparently it keeps telling me I'm missing dot when compiling the UML (tells me dot should be at /usr/bin/dot which it is, but it can't find it). I also tried a command "java -jar plantuml.jar -testdot" (which was suggested where the UML should have been) and the jar file couldn't be found.

View 11 Replies View Related

Slackware :: Konqueror Missing In KDE 4 Menu?

May 30, 2011

1. I can't find the Konqueror file manager in Kde menu. I can of course add it, but I'm wondering if it's by design or if it's a problem specific to my installation.

2. When I set my plasma desktop to folder view, activity, (whatever, I still don't understand how do folder views and activities relate, it's the most f****d up design ever) to get a full screen desktop (like in Kde 3), and my taskbar panel is at the top of the screen,then I get an "impression" of the default desktop widget behind my background (tried both wallpaper and a solid color). It seems to go away when I move panel to bottom of screen (then can move back to top and it's ok).See attached image.

3. Can't find a way to change color of Title bars. I'm right now using Oxygen widget style with Oxygen theme. I can't live with these gray bars which are even the same color for both active and inactive Tile bars (design idiocy of highest caliber IMO). Changing the color seemed to work when using Plastik just fine.

View 2 Replies View Related

Slackware :: Missing KDE Icons After Upgrade From 4.2.4 To 4.3.4?

Jan 26, 2010

I am using slackware-current 32bit version. After upgrading from kde 4.2.4 to 4.3.4 (using slackpkg), all my K-menu icons were missing.
There are also no icons in task managers for all kde-based applications like konsole,dolphin etc.. But for non-kde application like firefox, wicd and xmms, the icons show up in task manager. I have tried reinstalling kdebase, kdebase-runtime and kde-userspace with no luck.

View 5 Replies View Related

Slackware :: Missing Libuuid.so.1 In The Multi-lib?

Mar 2, 2010

package that libuuid is in so I can create a 32-bit libuuid.so.1 on my system. It is needed by wine and massconvert.sh didn't create it.

View 7 Replies View Related

Debian Programming :: HTML Export - Consolidate Several Lines Of CSV File With Firewall Rules

Oct 11, 2013

I have a CSV file, which I created using an HTML export from a Check Point firewall policy. Each rule is represented as several lines, in some cases. That occurs when a rule has several address sources, destinations or services.

I need the output to have each rule described in only one line. It's easy to distinguish when each rule begins. In the first column, there's the rule ID, which is a number.

Here's an example. In green are marked the strings that should be moved:

See example. The strings that should be moved are in bold:

NO.;NAME;SOURCE;DESTINATION;SERVICE;ACTION;
1;;fwgcluster;mcast_vrrp;vrrp;accept;
;;;;igmp;;
2;Testing;fwgcluster;fwgcluster;FireWall;accept;
;;fwmgmpe;fwmgmpe;ssh;;
;;fwmgm;fwmgm;;;

What I need ,explained in pseudo code, is this:

Read the first column of the next line. If there's a number:

Evaluate the first column of the next line. If there's no number there, concatenate (separating with a comma) the strings in the columns of this line with the last one and eliminate the text in the current one

The output should be something like this. The strings in bold are the ones that were moved:

NO.;NAME;SOURCE;DESTINATION;SERVICE;ACTION;
1;;fwgcluster;mcast_vrrp;vrrp-igmp;accept;
;;;;;;
2;Testing;fwgcluster-fwmgmpe-fwmgm;fwgcluster-fwmgmpe-fwmgm;FireWall-ssh;accept;
;;;;;;

The empty lines are there only to be more clear, I don't actually need them.

View 1 Replies View Related

Slackware :: Invalid Line - Missing Second Token

Apr 15, 2010

cat /etc/DIR_COLORS
Code:
LS_COLORS='rs=0:di=01;34:ln=01;36:hl=44;37:pi=40;33:so=01;35:do=01;35:bd=40;33;01:cd=40;33;01:or=40;31;01:su=37;41:sg=30;43:ca=30;41:tw=30;42:ow=34;42:st=37;44:ex=01;32:*.tar=01;31:*.tgz=01;31:*.arj=01;31:*.taz=01;31:*.lzh=01;31:*.lzma=01;31:*.zip=01;31:*.z=01;31:*.Z=01;31:*.dz=01;31:*.gz=01;31:*.bz2=01;31:*.bz=01;31:*.tbz2=01;31:*.tz=01;31:*.deb=01;31:*.rpm=01;31:*.jar=01;31:*.rar=01;31:*.ace=01;31:*.zoo=01;31:*.cpio=01;31:*.7z=01;31:*.rz=01;31:*.jpg=01;35:*.jpeg=01;35:*.gif=01;35:*.bmp=01;35:*.pbm=01;35:*.pgm=01;35:*.ppm=01;35:*.tga=01;35:*.xbm=01;35:*.xpm=01;35:*.tif=01;35:*.tiff=01;35:*.png=01;35:*.svg=01;35:*.svgz=01;35:*.mng=01;35:*.pcx=01;35:*.mov=01;35:*.mpg=01;35:*.mpeg=01;35:*.m2v=01;35:*.mkv=01;35:*.ogm=01;35:*.mp4=01;35:*.m4v=01;35:*.mp4v=01;35:*.vob=01;35:*.qt=01;35:*.nuv=01;35:*.wmv=01;35:*.asf=01;35:*.rm=01;35:*.rmvb=01;35:*.flc=01;35:*.avi=01;35:*.fli=01;35:*.flv=01;35:*.gl=01;35:*.dl=01;35:*.xcf=01;35:*.xwd=01;35:*.yuv=01;35:*.axv=01;35:*.anx=01;35:*.ogv=01;35:*.ogx=01;35:*.aac=00;36:*.au=00;36:*.flac=00;36:*.mid=00;36:*.midi=00;36:*.mka=00;36:*.mp3=00;36:*.mpc=00;36:*.ogg=00;36:*.ra=00;36:*.wav=00;36:*.axa=00;36:*.oga=00;36:*.spx=00;36:*.xspf=00;36:';

After opening a konsole terminal I get this message:
Code:
/bin/dircolors: /etc/DIR_COLORS:1: invalid line; missing second token
How can I get rid of that?

View 5 Replies View Related

Slackware :: Filesystems Missing From Hard Drives

May 15, 2010

This is driving me mad, so bear with me. I'm not sure this is a Slackware issue, in fact I'm sure it's not, but you all have helped me in the past so it seems like a good place to start. Also, I don't really know exactly how much of this information will be completely relevant to my problem, but I really can't pin it down.My server is running 64 bit Slackware 13. It was running fine, mainly just serving files on the LAN, with some occasional SSH activity. I was slowly moving hard drives to it from my desktop system (all 1 or 2 terabyte drives). They were previously formatted with NTFS and were filled with files, so it took me a while to move data around, format a drive, and copy the data back. I decided to use ext4, for no particular reason other than it was the newest, so if I end up having to reformat these again, I'm open to using another filesystem. Right now, I've got two 2TB drives and three 1TB drives, but one of those is still NTFS, so it is of no concern at the moment.

At this point, I had just added the two 2TB drives to the system. These happened to be the new WD Advanced Format drives with 4k sectors. I found a way to manipulate fdisk so it would start the partition on the correct cylinder or whatever to take advantage of the new format. I also ended up using GPT instead of MBR because it had more usable space.

two 2TB drives, GPT, ext4, 4k sectors
two 1TB drives, GPT, ext4
one 1TB drive, MBR, NTFS (not important)

This setup was working fine for a few days until I had to take the server down to move some wires around. When I booted the server back up, I discovered the two 2TB drives were missing. They showed up in /dev but wouldn't mount.

View 6 Replies View Related

Slackware :: Konqueror: Search Function Missing?

Feb 10, 2011

It would appear that the search (find) function has been removed from Konqueror in KDE 4.6. Is that the case? By "search" I mean the ability to search your hard drive, not a web page or document.

View 1 Replies View Related

Slackware :: Missing A Couple Of Font Directories?

May 24, 2011

I'm running slackware 13.37 and when looking through the x.org log I see that two directories are missing:

Information[ 68.572] (WW) The directory "/usr/share/fonts/local" does not exist.
Information[ 68.572] Entry deleted from font path.
Information[ 68.572] (WW) The directory "/usr/share/fonts/CID" does not exist.

[code]....

View 3 Replies View Related

Slackware :: Missing Java - Package Browser Down ?

Dec 17, 2010

I thought I knew what I was doing, just a minimal install of slackware 13.1 for a game server (minecraft), but it seems I missed java or something - I get the "command not found" error. gcc-java is installed. What package did I miss/what series is it in? Does it have any dependencies?

View 1 Replies View Related

Slackware :: Missing Kernel-modules Package

Feb 11, 2011

I upgraded to the latest -current just like always. I do the kernel packages last. This time, the machine failed to boot, telling me that it could not find the kernel modules. Well, rats.

I booted with a slackware dvd, passed the huge.s kernel, and booted into /dev/sda7, which is my main partition. I mounted /dev/sda7, and installed the kernel-modules-2.6.35.11 pkg. Rebooted, and got the same error?

I booted again with the dvd, mounted the partition, and navigated to /lib/modules - no 2.6.35.11 in there!

How do I get that package to install?

View 6 Replies View Related

Slackware :: Missing Panel Modules In XFCE4 - 13.37 ?

Jul 16, 2011

Upgraded from 13.1. Certain panel plugins seem to be gone in XFCE4.

When I try to add the Icon Box, Task List or several others to the panel, I get "Could not open 'iconbox' module".

There is an iconbox module in /usr/lib/xfce4/panel-plugins, along with some others, but they all date back to 3/29. In /usr/share/xfce4/panel-plugins, there is a mix of newer and older files.

Did the icon box go away? Do I need to nuke ~/.config/xfce4?

View 14 Replies View Related







Copyrights 2005-15 www.BigResource.com, All rights reserved