Debian Configuration :: How To Configure Rsyslog
Oct 13, 2010
I saw rsyslog is now installed in Debian Lenny instead of syslog. I want to send local iptables log to remote server. I modified the file config /etc/rsyslog.conf like this :
# provides UDP syslog reception
$ModLoad imudp
$UDPServerRun 514
[code]...
View 1 Replies
ADVERTISEMENT
Jul 19, 2010
I have upgraded to 10.04 or tried to at least. I have a server at OVH and it was running 8.04 desktop and I decided to upgrade it to 10.04 little relizing that OVHs kernels didn't work with 10.04 so after the reboot phase it ended up going into a netboot rescue mode.
I have got the latest kernel from the kernal.ubuntu area and installed it. Run grub-update, reboot... Nothing. So I decided to run apt-get install just to make sure there was nothing that needed to be installed.
The following is what I have got
Code:
Now from my research this means that I don't have a bootable system.
The following is the response I got from OVHs team
Code:
View 3 Replies
View Related
Mar 29, 2010
I have set up one Fedora 10 server.I found that rsyslog service is running on Fedora 10 server.How to configure rsyslog on Fedora 10 to collect the log from Cisco ASA5510 ?
View 2 Replies
View Related
Feb 9, 2016
i have recently installed freeradius in my debian jessie. i want to configure it to act as radius to my home router to authenticate wifi users. i want to use EAP-PWD auth medthod but there is no such section found in eap.conf.does any body know's how to configure EAP-PWD??
View 1 Replies
View Related
Jun 26, 2015
I've got a task: make time server, that gets time from gps, shows it on display and send to different systems through different ports like com, ltp, etc.
Solution is qt program, included in hybrid iso image.
I've created my binary-hybrid.iso debian, added my program and installed it on pc sudo dd if=/media/cdrom/binary-hybrid.iso of=/dev/sda then i restarted and everything is ok, but...
I also need:
1) to make my pc works as ntp-server, to do this i must change file ntp.conf in ntp****.deb before i build my iso
how can i do this?
as i realized according to live.debian.net/manual it's possible to do by putting smth to /live-build/config/packages.chroot and by adding some parameters to lb config but i can't find how and what
2) to save my program parameters after reboot. for example, i have such parameter as gmt. it defined as +3. i can change it while program is running to -5 for example and i want to have gmt -5 when i next time turn on my computer
When in programming it is simple - program creates ini file in it's directory and read/write parameters from this ini-file, but how to make possible to do the same thing when it works from iso?
View 1 Replies
View Related
Jun 16, 2010
I am using Debian testing. If I install the gnome-desktop-environment then the sound driver defaults to HDA but since I just installed gnome-core (for a more stripped-down version of gnome) the default is the OSS driver. How do I get ALSA to default to the sound driver HDA?
View 1 Replies
View Related
Jan 26, 2011
I have a Debian server that had only one onboard NIC (1000 Gbps) but now I've added two PCI Intel Pro 1000 NIC's into the system to bump up the total # of NIC's to three. My question now is can I specifically assign or force Debian which interface to configure as ethx? I would always like my onboard NIC to be 'eth0' and the two additional NIC's to be 'eth1' and 'eth2'. For some reason Debian loads the modules at random and sometimes what was my
View 2 Replies
View Related
Jul 30, 2015
I'm having issues setting up rsyslog to receive syslog from another server and only log to one file. I'm receiving the syslog from the remote side, however its putting the entries into more than one log file.
I configured /etc/rsyslog.conf to enable udp, and I have implemented a filter to log only from that IP address, and then stop processing more rules, but it seems to continue on.
I have found that the remote syslog events are using local0 and local1. There are two custom rsyslog config files in /etc/rsyslog.d that handle those two facilities. If I use that same if statement at the beginning of those custom config files, I can get it to work. Seems like a hack though.
Not working:
I put my if statement before the include statement, thinking I could stop it from hitting the custom rules.
Code:
Select all# /etc/rsyslog.conf Configuration file for rsyslog v3.
#
# For more information see
# /usr/share/doc/rsyslog-doc/html/rsyslog_conf.html
#################
#### MODULES ####
#################
$ModLoad imuxsock # provides support for local system logging
$ModLoad imklog # provides kernel logging support (previously done by rklogd)
#$ModLoad immark # provides --MARK-- message capability
[Code] ....
This works:
A custom config file in /etc/rsyslog.d
Code: Select allif $fromhost-ip == '<my ip>' then /var/log/<my directory>/syslog.log
& ~
local0.* /var/log/<a log file for local0>.log
This is on a WD Mycloud device:
Code: Select allLinux WDMyCloud 3.2.26 #1 SMP Tue Jun 17 15:53:22 PDT 2014 wd-2.2-rel armv7l
The programs included with the Debian GNU/Linux system are free software; the exact distribution terms for each program are described in the individual files in /usr/share/doc/*/copyright.
View 1 Replies
View Related
Jan 26, 2010
I have been trying to configure an MTA (sendmail) on a new Debian installation to receive system messages and local network mail. I have no need to fetch or relay mail outside my teeny LAN. The logs on the sending machine told me the mails were refused by the receiving (Debian Lenny) system. So I ran some quick nmap scans. From the sending machine, scanning the Debian machine:
PORT STATE SERVICE
22/tcp open ssh
111/tcp open rpcbind
From the Debian machine, running 'nmap localhost':
PORT STATE SERVICE
22/tcp open ssh
25/tcp open smtp
111/tcp open rpcbind
587/tcp open submission
From the Debian machine, running 'nmap debian' (this is a virtual machine named debian) :
PORT STATE SERVICE
22/tcp open ssh
111/tcp open rpcbind
Why the two different results? How do I get the scans to be the same so I can, eventually, configure an MTA?
View 3 Replies
View Related
Mar 3, 2010
I've been trying to configure Postgresql in Debian for some time now, in order to install a ERP program in my computer, but when trying to follow the tutorial for the program configuration I end up stalled. Basically its says this:
1) under su, start by finding the postgresql.conf file (it points the location of the file in /var/lib/postgres/data, but it isn't there) and find the line saying 'tcpip_socket' and changing it to "true"
After a little search and help, I found this file in /etc/postgresql/<version>/main/ but the mentioned line is absent, locate it or tell me where to add it in the file? I've read the file front to back and I'm pretty sure the line isn't there.This is, according to the tutorial, to enable the server to connect to a Java program through the JDBC.
2) after editing postgresql.conf, edit pg_hba.conf and add the following line to the end of the file: host all all 127.0.0.1 255.255.255.255 trust
I get stuck after this, because I'm now supposed to restart the server by using '/etc/init.d/postgresql restart', but bash replies that the path is invalid. The program I'm trying to install is hosted here: [URL]. It's a portuguese ERP program.
View 3 Replies
View Related
Aug 30, 2010
To exploit the guessnet capability, I have configured my WIFI so that ifplugd can auto connect WIFI after boot.The access point is hidden, and I have provided all the required info in my /etc/network/interfaces file
mapping wlan0
script guessnet-ifupdown
map default: office-wifi
[code]....
View 1 Replies
View Related
Sep 9, 2010
After updating my squeeze laptop today I noticed that grub from a few days back fails to --configure.
The dpkg log says
2010-09-09 18:52:45 startup packages configure
2010-09-09 18:52:45 configure grub-pc 1.98+20100804-4 1.98+20100804-4
[code]....
View 1 Replies
View Related
Dec 16, 2010
how to configure my firestarter firewall. I have a website which requires the port 1935 to be open. I figured out how to open the port using firestarter. Is there anyway to make the port open only to this website, and not to every other website for security reasons of course.
View 4 Replies
View Related
Feb 4, 2011
I've created Live Debian USB image and it works well, but if I put an additional USB stick, then it's just read only. Howto configure Live Debian before rebuild an image to get fully USB support, i mean to write into other USB drives?
View 4 Replies
View Related
Jan 17, 2016
Setup a DNS/DHCP/Directory server on Debian? I would like to configure the things in Debian so that can join Linux and Windows(if possible as m not sure yet) clients to the directory server. Any links to setup both Forward and Reverse lookup zone in the environment.
View 4 Replies
View Related
Feb 11, 2016
I will see ipcam in my local network from my tablets. I'm install server/client but I can't even ping my Ipcam from my tablet.I'm ping my ipcam from my server
Code: Select allping 10.42.0.22
PING 10.42.0.22 (10.42.0.22) 56(84) bytes of data.
64 bytes from 10.42.0.22: icmp_seq=1 ttl=64 time=0.639 ms
eth1:1 Link encap:Ethernet HWaddr 00:25:22:1c:6e:05
inet addr:10.42.0.1 Bcast:10.42.0.255 Mask:255.255.255.0
UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1
tun0 Link encap:UNSPEC HWaddr 00-00-00-00-00-00-00-00-00-00-00-00-00-00-00-00
inet addr:10.42.0.1 P-t-P:10.42.0.2 Mask:255.255.255.255
UP POINTOPOINT RUNNING NOARP MULTICAST MTU:1500 Metric:1
RX packets:1775 errors:0 dropped:0 overruns:0 frame:0
[code]...
my tablet can receive ip, can see ftp on server but can't see anything in my home network.
View 3 Replies
View Related
May 28, 2010
I have just set up the above OS, however, installation did not find my network and therefore APT additional software & security updates could not be accessed.The network was simple to setup post installation.I have uncommented a few sources in the sources list file but obviously that does not,in itself, suffice to get accessability. I am also unable to configure my supported HP printer and I assume that can only be done with an additional package via APT.
View 6 Replies
View Related
Aug 13, 2011
I have just installed Debian Squeeze on my spare computer (dual booted with Ubuntu 11.04) and I cannot connect to the internet using Squeeze. Due to my ISP, I have to manually connect this computer and on Ubuntu copying and pasting a text file such as this into the terminal works with no problems.What do I need to do to manually configure my Squeeze internet connection?
View 5 Replies
View Related
Aug 26, 2011
Trying to install and configure a webserver - With Postfix, Courier, MySQL And Squirrelmail. But I am stuck. Postfix mail system is not running. It seems to execute /etc/init.d/postfix start, but it really did not. reload; fatal: the Postfix mail system is not running. And in mail.log is that:
Master.cf: line 40: bad transport type: smtp_data_d$_done_timeout=1200
View 1 Replies
View Related
Dec 3, 2015
I am trying to configure samba for a stripped down file server. I am running debian with command line only. My problem is that I cannot unmask samba.
See below:
root@debian:/home/aaron# service samba status
● samba.service
Loaded: masked (/dev/null)
Active: inactive (dead)
I have tried "sudo systemctl unmask samba.service". I receive no errors however it does not actually unmask. I can't find anything online regarding a service stuck on masked status.
View 12 Replies
View Related
Dec 16, 2015
I have an Acer Aspire V15 Nitro Black edition, and I recently installed after working so hard Debian 8.2
My problem is that I can't see any WiFi connection...
I believe that the firmware for my card is the ath10k, but I can't install it...
lspci -nn | grep Network
07:00.0 Network controller [0280]: Qualcomm Atheros Device [168c:003e] (rev 20)
View 3 Replies
View Related
Feb 2, 2010
for some reason I got taping on touchpad is disabled after some software upgrade or something.I can enable it with synclient TapButton1=1, etc.. but have got to do it every time I reboot. Also, I don't have Xorg.conf file. Is there any way I can configure taping to work permanently ?
View 6 Replies
View Related
Oct 3, 2010
but I have been literally banging my head against the wall.I am trying to configure skype on my system (testing, x86) but unsuccessfully.Let me say that I am now using skype (static) as downloaded from skype website.
$ lspci
00:00.0 Host bridge: Intel Corporation Mobile 915GM/PM/GMS/910GML Express Processor to DRAM Controller (rev 04)
[code]....
View 3 Replies
View Related
Nov 5, 2010
I've recently been trying to restore a Debian installation back to it's previous state after a serious operation system crash. Efforts are largely going well however I've run into problems since reinstalling Wine. Previously I could execute a Windows executable by simply entering ./executable.exe in the bash shell but this no longer seems to work as now I have to include the "wine" command in front of the executable. how to configure Debian to automatically use Wine to execute using the ./executable.exe format?
View 1 Replies
View Related
Jan 29, 2011
Kernel: Linux 2.6.26-2-686 (i686)
Compiled: #1 SMP Thu Nov 25 01:53:57 UTC 2010
C Library: GNU C Library version 2.7 (stable)
Distribution: Debian GNU/Linux 5.0.8
Desktop Environment: GNOME 2.20
Gnome comes with Vino Remote Desktop as part of it's package. I want Vino to run at boot so that I can login remotely.I am using VNC-4.1.3 for remote viewing. However, I can only view remotely once I have logged-in locally
View 5 Replies
View Related
Apr 8, 2011
I have got the following Problem: I installed the 64 bit lxde Debian version... I couldnt configure the network during the installation because I just have a dsl modem and not a router... so the configuration of the network failed.... after the installation I started debian... and was surprised about the lack of "basic system configuration"-software that had been installed... I couldnt find aptitude or whats the debian-Update-Programm called .... instead I found OpenOffice... HAE? then I tried to configure internet access..... so I started a terminal and tried to start pppoeconf... but the program wasnt found! ARRRGG! What am I doing wrong here.... Why are these system utilities like pppoeconf not always installed...
View 1 Replies
View Related
Jul 23, 2010
I'm using debian 5 x64 with xfce.Is there a way to configure (start/stop/restart) services (especially Apache2, mySQL and PHP) using a graphical or cli tool? I tried to use sysv-rc, sysv-rc-conf, rcconf and rc-conf in the terminal but Bash didn't find them (Although Synaptic show that sysv-rc is installed).
View 9 Replies
View Related
Aug 9, 2010
Kernel: Linux 2.6.26-2-686 (i686)
Compiled: #1 SMP Thu Nov 25 01:53:57 UTC 2010
C Library: GNU C Library version 2.7 (stable)
Distribution: Debian GNU/Linux 5.0.8
Desktop Environment: GNOME 2.20
Gnome comes with Vino Remote Desktop as part of it's package. I want Vino to run at boot so that I can login remotely. I am using VNC-4.1.3 for remote viewing. However, I can only view remotely once I have logged-in locally.
View 9 Replies
View Related
Jan 25, 2011
I will be relocating to a permanent residence sometime in the next year or two. I've recently begun thinking about the best way to implement a home-based network. It occurred to me that the most elegant solution might be the use of VM technology to eliminate as much hardware and wiring as possible.My thinking is this: Install a multi-core system and configure it to run several VMs, one each for a firewall, a caching proxy server, a mail server, a web server. Additionally, I would like to run 2-4 VMs as remote (RDP)workstations, using diskless workstations to boot the VMs over powerline ethernet.The latest powerline technology (available later this year) will allow multiple devices on a residential circuit operating at near gigabit speed, just like legacy wired networks.
In theory, the above would allow me to consolidate everything but the disklessworkstations on a single server and eliminate all wired (and wireless) connections except the broadband connection to the Internet and the cabling to the nearest power outlets. It appears technically possible, but I'm not sure about the various virtual connections among VMs. In theory, each VM should be able to communicate with the other as if it was on the same network via the server data bus, but what about setting up firewall zones? Any internal I/O bandwidth bottlenecks? Any other potential "gotchas", caveats, issues? (Other than the obvious requirement of having enough CPU and RAM).Any thoughts or observations welcome, especially if they are from real world experience in a VM environment. BTW--in case you're wondering why I'm posting here, it's because I run Debian on all my workstations/servers (running VirtualBox as a VM for Windows XP on one workstation).
View 14 Replies
View Related
Jun 5, 2010
When i want to configure my touchpad on my dell inspiron 1525 with debian lenny then i got this message: gsynaptics couldnt initialize you have to set 'shmconfig' 'true' in xorg.conf or xf86config to use gsynaptics My touchpad is an alps and not a synaptics so far i can see. My xorg.conf is this: [URL]
View 13 Replies
View Related