Sponsored Content
Full Discussion: Network Connections
Top Forums UNIX for Advanced & Expert Users Network Connections Post 302987670 by rbatte1 on Wednesday 14th of December 2016 05:11:54 AM
Old 12-14-2016
Well, I'm still not much further on. Do you want the processing to run on the POS or the server?

Running on the POS
Perhaps NFS or Samba sharing the files to the POS. You have to consider security so no-one else can pick it up.
Running on the server
The POS can send a connection to the server to do the work then return. You still have to consider security though on how you authenticate the incoming connection.

Are you worried about the POS being physically removed or just hacked? Either way, it might still be possible to access the code & data by mimicking what the POS does routinely.

This could be a major design project in the making, but you know your business far better than us, so you need to clarify what you want to do and then we can see how we can help. What does your POS do so far?



Robin
 

8 More Discussions You Might Find Interesting

1. HP-UX

HP-UX: X connections...?

Hello All, I have 2 qries about X connections on HP-UX : 1.How/where to determine whether "X connections" to the server are controlled. 2. How/where to determine whether "X11 connection" are tunnelled via ssh. 3. How/where to determine the "Time in minutes before unattended X terminals... (0 Replies)
Discussion started by: abhayh
0 Replies

2. Linux

active network connections

how can i see active network connections (1 Reply)
Discussion started by: youmna
1 Replies

3. IP Networking

ssh server is attachable from local network not from another network

hello i have a ubuntu ssh server that i can acess from any of my comnputers but only if they are on the same wireless network as the server. i tested trhis my tehtehring my samsung blackjack to my windows partition and installing openssh to windows it works when windows is on the wireless but no... (1 Reply)
Discussion started by: old noob
1 Replies

4. IP Networking

Logging network connections

Hello, I have a centralized syslog server, and am wondering if there is a way to log all network connections to it (Primarily incoming, such as FTP, httpd, SSH, etc). Essentially what I would like is to get the information seen in netstat or lsof logged line by line, realtime. Is there a... (3 Replies)
Discussion started by: abstrcrndm
3 Replies

5. IP Networking

preferred network connections

I rotate between a static lan, dhcp lan, and various wireless networks daily. Is there a way to set preferred network connections? I use some static ip's daily, some static ip's like once a month, and almost never use the dhcp lan. The same I do with my various wireless networks. Some I use daily... (0 Replies)
Discussion started by: cokedude
0 Replies

6. IP Networking

2 WAN connections on 1 switch/network

I want to know potential problems with the following scenario OR if it is an ok way to have my network setup: I have 2 WAN connections to the internet. I have each WAN connection plugged into its own router. Router DD-WRT is gateway for servers (192.0.10.50). Router Tomato is gateway for pc's... (1 Reply)
Discussion started by: herot
1 Replies

7. Red Hat

Network becomes slow and return fast only after restart network

Hi, I have 2 machines in production environment: 1. redhat machine for application 2. DB machine (oracle) The application doing a lot of small read&writes from and to the DB machine. The problem is that after some few hours the network from the application to the DB becomes very slow and... (4 Replies)
Discussion started by: moshesa
4 Replies

8. Shell Programming and Scripting

Could you help me writing a script showing which network connections are currently active?

Could you help me writing a script showing which network connections are currently active? Means output should be something like: "eth0, wlan1, wlan3" Problem: The output is supposed to happen on a 16x2 LCD Display. Currently I am doing a "Ifconfig" as output, but its too fast for the... (2 Replies)
Discussion started by: lordofazeroth
2 Replies
MCA(9)							   BSD Kernel Developer's Manual						    MCA(9)

NAME
MCA, mca_intr_establish, mca_intr_disestablish, mca_intr_evcnt, mca_conf_read, mca_conf_write -- MicroChannel Architecture bus SYNOPSIS
#include <sys/bus.h> #include <dev/mca/mcavar.h> #include <dev/mca/mcadevs.h> void * mca_intr_establish(mca_chipset_tag_t mc, mca_intr_handle_t hdl, int level, int (*handler)(void *), void *arg); void mca_intr_disestablish(mca_chipset_tag_t mc, mca_intr_handle_t hdl); const struct evcnt * mca_intr_evcnt(mca_chipset_tag_t mc, mca_intr_handle_t hdl); int mca_conf_read(mca_chipset_tag_t mc, int slot, int reg); void mca_conf_write(mca_chipset_tag_t mc, int slot, int reg, int data); DESCRIPTION
The MCA device provides support for IBM's MicroChannel Architecture bus found on IBM PS/2 systems and selected workstations. It was designed as a replacement bus for the ISA bus found on IBM's older machines. However, the bus specifications were only available under license, so MCA did not achieve widespread acceptance in the industry. Being a replacement for the ISA bus, the MCA bus does share some similar aspects with the ISA bus. Some MCA devices can be detected via the usual ISA-style probing. However, most device detection is done through the Programmable Option Select (POS) registers. These registers provide a window into a device to determine device-specific properties and configuration. The configuration of devices and their POS regis- ters is performed using IBM's system configuration software. The MCA bus uses level-triggered interrupts while the ISA bus uses edge-triggered interrupts. Level triggered interrupts have the advantage that they can be shared among multiple device. Therefore, most MCA-specific devices should be coded with shared interrupts in mind. DATA TYPES
Drivers for devices attached to the MCA bus will make use of the following data types: mca_chipset_tag_t Chipset tag for the MCA bus. mca_intr_handle_t The opaque handle describing an established interrupt handler. struct mca_attach_args A structure use to inform the driver of MCA bus properties. It contains the following members: bus_space_tag_t ma_iot; /* MCA I/O space tag */ bus_space_tag_t ma_memt; /* MCA mem space tag */ bus_dma_tag_t ma_dmat; /* MCA DMA tag */ int ma_slot; /* MCA slot number */ int ma_pos[8]; /* MCA POS values */ int ma_id; /* MCA device */ FUNCTIONS
mca_intr_establish(mc, hdl, level, handler, arg) Establish a MCA interrupt handler on the MCA bus specified by mc for the interrupt described completely by hdl. The priority of the interrupt is specified by level. When the interrupt occurs the function handler is called with argument arg. mca_intr_disestablish(mc, hdl) Dis-establish the interrupt handler on the MCA bus specified by mc for the interrupt described completely hdl. mca_intr_evcnt(mc, hdl) Do interrupt event counting on the MCA bus specified by mc for the event described completely by hdl. mca_conf_read(mc, slot, reg) Read the POS register reg for the device in slot slot on the MCA bus specified by mc. mca_conf_write(mc, slot, reg, data) Write data data to the POS register reg for the device in slot slot on the MCA bus specified by mc. AUTOCONFIGURATION
The MCA bus is a direct-connection bus. During autoconfiguration, the parent specifies the MCA device ID for the found device in the ma_id member of the mca_attach_args structure. Drivers should match on the device ID. Device capabilities and configuration information should be read from device POS registers using mca_conf_read(). Some important configuration information found in the POS registers include the I/O base address, memory base address and interrupt number. The location of these configurable options with the POS registers are device spe- cific. DMA SUPPORT
The MCA bus supports 32-bit, bidirectional DMA transfers. Currently, no machine-independent support for MCA DMA is available. CODE REFERENCES
The MCA subsystem itself is implemented within the file sys/dev/mca/mca_subr.c. Machine-dependent portions can be found in sys/arch/<arch>/mca/mca_machdep.c. The database of known devices exists within the file sys/dev/mca/mcadevs_data.h and is generated automat- ically from the file sys/dev/mca/mcadevs. New vendor and product identifiers should be added to this file. The database can be regenerated using the Makefile sys/dev/mca/Makefile.mcadevs. A good source of information about MCA devices is IBM's system configuration disk. The disk contains .adf files which describe the location of device configuration options in the POS registers. SEE ALSO
mca(4), autoconf(9), bus_dma(9), bus_space(9), driver(9), isa(9) BUGS
The machine-independent MCA driver does not currently support DMA. MCA devices which require DMA operation currently access the DMA capabil- ities directly. BSD
October 7, 2001 BSD
All times are GMT -4. The time now is 01:41 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy