Questions tagged [dynamic]

88 questions
1
vote
3 answers

How do I figure out what dynamic libraries are loaded by a Unix process?

I want to run a Unix program which runs for a few seconds, without sacrificing speed of execution. After it is done, I would like to know what dynamic (shared) libraries it used. What is the appropriate command? The main problem is that I have a…
Joseph Turian
  • 265
  • 2
  • 7
1
vote
2 answers

SIP Server with dynamic public IP address and dyndns

Is it possible to run SIP server with dynamic public IP address and dyndns? The question is what happens when IP address is changed and DNS is not yet updated.
Sasa
1
vote
0 answers

BIND dynamic update trigger shell script

Would like to trigger a shell script to run when a dynamic zone receives an update. Haven't found any thing about how to make BIND dynamic zone update trigger a shell script. Can this be done? Anyone know how? Thanks
NOYB
  • 191
  • 7
1
vote
0 answers

Setting Apache SSL path dynamically based on domain

Trying to replace SSL path with the current domain. ServerAlias * UseCanonicalName Off DocumentRoot /var/www/html …
Ramjith Ap
  • 111
  • 1
0
votes
1 answer

The dynamic ports are constantly changing, How do set them in the firewall?

I'd like to block unused ports on my server so I monitor the ports with CurrPorts and I understand some processes like lsass.exe have some dynamic ports e.g 49158,49976,... These ports might change after a service restart. I studied the Best…
0
votes
2 answers

htacess rule for dynamic url in GET method

I have a GET request as http://www.example.com/index.php?location=location&category=category&keyword=any+keyword I have converted this URL to http://www.example.com/location/category/any+keyword but the problem is my URL keeps changing. If a user…
0
votes
1 answer

plink.exe remote port forwarding to local machine for dynamic port forwarding

I have been trying since 2 days to do the following: I have a windows machine, let's call it A, and a Linux machine called B. There is a firewall between A and B. I want to connect remotely from the windows machine A to my Linux machine (remote port…
john_v
  • 1
  • 1
  • 2
0
votes
3 answers

offload serving dynamic files from app server to nginx

I'm using Nginx as Reverse Proxy for my App Server. The App Server receives file download requests via this route: /files/:id Then the app finds the file path on the File System i.e. /path/to/file/with/id and responds with the file contents. I don't…
aliep
  • 101
  • 5
0
votes
1 answer

Dynamic AuthName in Apache2 configuration

I am trying to configure Apache v2.4.7 to lookup in a database if a user can access a specific location. I manage to do it for a few specific location, but fail to do it for dynamic locations. So this is what works for two locations…
0
votes
1 answer

Prevent a user from changing extended properties

Question: By default a user can change their own extended properties. Is the following code appropriate to prevent a user changing their user extended properties attributes?: USE [CustomerAccessDatabase]; GO DENY SELECT ON sys.extended_properties to…
Max xaM
  • 101
  • 3
0
votes
3 answers

Nginx: proxy_pass dynamic from location

I hope you can help me with a little but tricky nginx problem: I want to configure a dynamic location-block like this: location /test1/* { proxy_pass destination.com/api/*; proxy_buffering off; } If the URL is .../test1/folder1 the…
varlog
  • 23
  • 2
  • 6
0
votes
2 answers

Windows 2008 r2 showing single disk with 2 partition

On Virtual server Windows 2008 R2 install on hyper-v 2008. I have a two disk but they have two partition marge as single array 0 I think. I need to convert Dynamic disk to Basic Disk but at the moment I cant do it because it has 2 partition. Sorry…
maj
  • 5
  • 1
  • 8
0
votes
1 answer

forwarding connections from firewalled local machine to firewalled remote machine

I need to forward internet traffic from a local machine to a remote machine, routing traffic through an intermediary SSH server on the way. The remote machine is firewalled and running a SOCKS5 proxy which accepts incoming connections on, for…
0
votes
0 answers

Make dynamic redirection with dynamic sub domain

it is possible to make dynamic redirection with dynamic sub domain? that is to say that I have a domain with redirection *.domain.com, to my server-1 but I'd like: a1.domain.com -> server-1 b1.domain.com -> server-1 c1.domain.com -> server-1…
Lionel J
  • 1
  • 1
0
votes
2 answers

Dynamic Routing via hostname, is it possible?

I am using a dynamic IP service to access my home PC's remotely and maintain that DNS is updated when my IP changes. I run 5-6 machines and I would love to be able to do machine1.mydomain.com and have it route to the right LAN ip. This way I could…