When i start CSF i cant connect VPS or download any data into it It appears i cant connect Linux VP?


 
Thread Tools Search this Thread
Special Forums Cybersecurity When i start CSF i cant connect VPS or download any data into it It appears i cant connect Linux VP?
Prev   Next
# 2  
Old 04-11-2014
The LOGDROPIN rule will give you more information on exactly what it being rejected but a useful flag to add to the iptables -L is -v as that also shows the interface the rule applies to. If you post that result here, along with your ifconfig -a (& perhaps obfuscate any sensitive internal network info if you wish) we should be able to get to the bottom of this.

Edit:
Oh, wait, OP is banned... nevermind then.
 
Login or Register to Ask a Question

Previous Thread | Next Thread

9 More Discussions You Might Find Interesting

1. UNIX for Advanced & Expert Users

Connect direct - SFTP - List of servers that I can connect

Greetings Experts, I am working for a bank client and have a question on connect-direct and SFTP. We are using Linux RedHat servers. We use connect-direct to transfer (NDM) files from one server to another server. At times, we manually transfer the files using SFTP from one server to another... (2 Replies)
Discussion started by: chill3chee
2 Replies

2. UNIX for Dummies Questions & Answers

Connect to my Linux network remotely?

Have - -3 HP Proliant G4P servers - Debian (wheezy) -3 RaspPI's - Raspian -Unmanaged switch that all 6 can ssh into each other with via eth0 -Router (w wifi and 5 ports) - on eth1 of the three G4p's of protocol dhcp Want: To let the six servers, in my basement run, since the HPs are... (5 Replies)
Discussion started by: sas
5 Replies

3. IP Networking

How to connect internet in Linux OS

How to enable internet on my Linux OS My OS: Red Hat Fedora Release 9 (Sulphur) version: 2.6 I have to connect via my Nokia cell phone via cable. This way only I had been using internet on my Windows OS. If any software is required to install on my UNIX for internet, then I don't have any. If... (14 Replies)
Discussion started by: ravisingh
14 Replies

4. Red Hat

How to connect internet in Linux OS?

What all is required so that I can use internet on my Linux OS My OS: Red Hat Fedora version: 2.6 I have to connect via my Nokia cell phone via cable. This way only I had been using internet on my Windows OS. If any software is required to install on my UNIX for internet, then I don't... (1 Reply)
Discussion started by: ravisingh
1 Replies

5. Shell Programming and Scripting

Connect to Windows from Linux using NetCat

Hi Need help to connect from Ubuntu to Windows using NetCat nc I can not get my script to send new-line Her is what I have tried(sleep 2 ; echo user ; sleep 1; echo pass; sleep 2; echo netstat) | nc -t 10.10.10.34 23 gives this outputÿý%ÿûÿûÿý'ÿýÿýÿûWelcome to Microsoft Telnet Service ... (1 Reply)
Discussion started by: Jotne
1 Replies

6. Shell Programming and Scripting

lftp script to connect to external sftp site and download to internal ftp and then send email

Hi there, I'm new to shell scripting and need some help if possible? I need to create a shell script (.sh) to run as a cron job on an ubuntu linux server to connect to an external sftp sites directory using credentials (which I have) and then download to our internal ftp server and then copy... (3 Replies)
Discussion started by: ghath
3 Replies

7. AIX

AIX Remote Connect Fail With “No more multiple IP addresses to connect” Error

We have a production server at a client site running AIX. And recently when users are trying to connect to it via telnet, it prompts "No more multiple IP addresses to connect". Can I know what does this error mean? and how to rectify this? Thanks. (2 Replies)
Discussion started by: a_sim
2 Replies

8. Debian

Connect Reliance netconnect data card in linux debian

Hi, I want to connect Reliance netconnect data card in linux - debian. I don't know which software needs to be install. can you please help me what is the software needs to be install to connect this datacard. I have connected this datacard in windows using the CD which is provided by... (3 Replies)
Discussion started by: latika
3 Replies

9. UNIX for Dummies Questions & Answers

Connect over ssh, start something, disconnect

i'm connecting with ssh from a windows pc to a linux system. i want to start e.g. a download and close my session afterwards. how do i do this without killing the download? thx in advance. (2 Replies)
Discussion started by: sTorm
2 Replies
Login or Register to Ask a Question
CSF(9)							   BSD Kernel Developer's Manual						    CSF(9)

NAME
CSF -- The NetBSD common scheduler framework SYNOPSIS
#include <sys/sched.h> void sched_rqinit(void); void sched_setup(void); void sched_cpuattach(struct cpu_info *); void sched_tick(struct cpu_info *); void sched_schedclock(lwp_t *); bool sched_curcpu_runnable_p(void); lwp_t * sched_nextlwp(void); void sched_enqueue(lwp_t *, bool); void sched_dequeue(lwp_t *); void sched_nice(struct proc *, int); void sched_proc_fork(struct proc *, struct proc *); void sched_proc_exit(struct proc *, struct proc *); void sched_lwp_fork(lwp_t *); void sched_lwp_exit(lwp_t *); void sched_setrunnable(lwp_t *); void sched_print_runqueue(void (*pr)(const char *, ...)); void sched_pstats_hook(struct proc *, int); void sched_pstats(void *arg); pri_t sched_kpri(lwp_t *); void resched_cpu(lwp_t *); void setrunnable(); void schedclock(lwp_t *); void sched_init(void); DESCRIPTION
CSF provides a modular and self-contained interface for implementing different thread scheduling algorithms. The different schedulers can be selected at compile-time. Currently, the schedulers available are sched_4bsd(9), the traditional 4.4BSD thread scheduler, and sched_m2(9) which implements a SVR4/Solaris like apporach. The interface is divided into two parts: A set of functions each scheduler needs to implement and common functions used by all schedulers. Scheduler-specific functions The following functions have to be implemented by the individual scheduler. Scheduler initialization void sched_cpuattach(struct cpu_info *) Per-CPU scheduler initialization routine. void sched_rqinit(void) Initialize the scheduler's runqueue data structures. void sched_setup(void) Setup initial scheduling parameters and kick off timeout driven events. Runqueue handling Runqueue handling is completely internal to the scheduler. Other parts of the kernel should access runqueues only through the following functions: void sched_enqueue(lwp_t *, bool) Place an LWP within the scheduler's runqueue structures. void sched_dequeue(lwp_t *) Remove an LWP from the scheduler's runqueue structures. lwp_t * sched_nextlwp(void) Return the LWP that should run the CPU next. bool sched_curcpu_runnable_p(void) Indicate if there is a runnable LWP for the current CPU. void sched_print_runqueue(void (*pr)(const char *, ...)) Print runqueues in DDB. Core scheduler functions void sched_tick(struct cpu_info *) Periodically called from hardclock(9). Determines if a reschedule is necessary, if the running LWP has used up its quantum. void sched_schedclock(lwp_t *) Periodically called from schedclock() in order to handle priority adjustment. Priority adjustment void sched_nice(struct proc *, int) Recalculate the process priority according to its nice value. General helper functions void sched_proc_fork(struct proc *, struct proc *) Inherit the scheduling history of the parent process after fork(). void sched_proc_exit(struct proc *, struct proc *) Charge back a processes parent for its resource usage. void sched_lwp_fork(lwp_t *) LWP-specific version of the above void sched_lwp_exit(lwp_t *) LWP-specific version of the above void sched_setrunnable(lwp_t *) Scheduler-specific actions for setrunnable(). void sched_pstats_hook(struct proc *, int) Scheduler-specific actions for sched_pstats(). Common scheduler functions pri_t sched_kpri(lwp_t *) Scale a priority level to a kernel priority level, usually for an LWP that is about to sleep. void sched_pstats(void *) Update process statistics and check CPU resource allocation. inline void resched_cpu(lwp_t *) Arrange for a reschedule. void setrunnable(lwp_t *) Change process state to be runnable, placing it on a runqueue if it is in memory, awakening the swapper otherwise. void schedclock(lwp_t *) Scheduler clock. Periodically called from statclock(). void sched_init(void) Initialize callout for sched_pstats() and call sched_setup() to initialize any other scheduler-specific data. CODE REFERENCES
The CSF programming interface is defined within the file sys/sys/sched.h. Functions common to all scheduler implementations are in sys/kern/kern_synch.c. The traditional 4.4BSD scheduler is implemented in sys/kern/sched_4bsd.c. The M2 scheduler is implemented in sys/kern/sched_m2.c. SEE ALSO
mi_switch(9), preempt(9), sched_4bsd(9), sched_m2(9) HISTORY
The CSF appeared in NetBSD 5.0. AUTHORS
The CSF was written by Daniel Sieger <dsieger@NetBSD.org>. BSD
September 2, 2009 BSD