473,783 Members | 2,269 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Need help w/.ksh script to REORCHK & output Recommended tables to a file

Hi all,
I am comming along with all this Linus/DB2/scripting business...I am no
longer scared of it!! (LOL). But,
I need to create a .ksh script that does a REORGCHK and output only tables
recommended for reorg.
My goal is to reorgchk and run reorgs based on entries in this reorg file as
shown in the example below.
I have tried my hand at the following failing script and hope that gurus here
can throw me a lifeline of examples on how to script this. Here is what I
tried to do that is failing: (Actually, I found it someplace):

START SHELL CODE
#!/bin/ksh
DBLIST="EMPLOYE E"

for DB_NAME in $DBLIST
do
db2 connect to $DB_NAME
db2 reorgchk current statistics on table all | grep -v SYSIBM | grep '*' |
awk '/^DB2INST1/ && NF == 12 { print " REORG TABLE DB2INST1."$2 ";" }' >
ReorgTables.sql
/db2home/db2inst1/sqllib/bin/db2 -tvf ReorgTables.sql &
done
exit 0
END SHELL CODE

Any help will be highly appreciated...

Thanks

--
Message posted via DBMonster.com
http://www.dbmonster.com/Uwe/Forums....m-db2/200806/1

Jun 27 '08
16 4857
Thanks lan for your continuing interest. I have this questions regarding
reorg:

(1) For DB2 (UDB inparticular), what is best practice in terms of (a)
Runstats, Reorgchk, Reorg, Runstats or (b) Reorgchk, Reorg, Runstats. What's
your take on either of the two reorg plan?

(2) It seems that if I run Reorgchk for tables and Reorgchk for indexes, each
producing files for input to reorg, I might reorg tables and indexes twice
because as you said, offline reorg of tables include reorg of indexes too. Is
there a way to avoid this? I hope you see what I am getting at here.

(3) Could you discuss the pros and cons of Offline and Inplace reorg? Why
would you chose one over the other?

Again, thanks for your contribution to my questions...
Ian wrote:
>Thank you lan. $3 and $4 did out only indexes and thats what I was looking
for.

Your last post certainly very educational about the way this tool/reorging
works. So, if both the table and indexes need reorging, doing reorg on the
table alone is sufficient?

Yes. Let me be clear though: REORG TABLE X does a "classic" (offline)
reorganizati on of the table, and all indexes are rebuilt as a part of
this.

REORG TABLE X INPLACE does an online reorg of the table. In this case,
indexes are not automatically rebuilt (they indexes are just updated as
RIDs change). So this is a case where an index reorg might help.
>How about where only indexes need reorg? If I reorg the index alone, how does
that affect the table that the index is based on?

Reorganizing an index has no effect on the base table.
--
Message posted via DBMonster.com
http://www.dbmonster.com/Uwe/Forums....m-db2/200806/1

Jun 27 '08 #11
Ian
Okonita via DBMonster.com wrote:
Thanks lan for your continuing interest. I have this questions regarding
reorg:

(1) For DB2 (UDB inparticular), what is best practice in terms of (a)
Runstats, Reorgchk, Reorg, Runstats or (b) Reorgchk, Reorg, Runstats. What's
your take on either of the two reorg plan?
REORGCHK is not useful if you don't have valid statistics, so (b) would
be a better choice.
(2) It seems that if I run Reorgchk for tables and Reorgchk for indexes, each
producing files for input to reorg, I might reorg tables and indexes twice
because as you said, offline reorg of tables include reorg of indexes too. Is
there a way to avoid this? I hope you see what I am getting at here.
If you're doing offline reorgs, you probably don't need to bother with
separate index reorgs.

Realize that there are certain application design characteristics that
will result in the requirement to reorg indexes. If your application
does not follow these patterns, chances are you won't need to do this
kind of index maintenance.

(3) Could you discuss the pros and cons of Offline and Inplace reorg? Why
would you chose one over the other?
Offline means that the table is unavailable during reorg. Obviously,
this could present a problem for your users.
Again, thanks for your contribution to my questions...
You might consider letting DB2 handle all of this for you. DB2 has
some pretty smart routines built in to the engine to manage doing
runstats / reorgs so you don't have to think about it.

http://is.gd/Ait [DB2 Info Center]

Jun 27 '08 #12
Yep, I wish I could leverage DB2 auto-maintenance but I have a very
unstructured environment that the only thing reasonably safe to do is manage
every aspect of our DB2 health upkeep.

Here's another question (I promise, this is the last on this thread:-)

(1) 2 Tables are identified as needing reorg both before and after runstats
was done on them. Reorg is then performed on the two tables and another
runstats done on these tables.
What puzzles me is that both tables still show that Reorg is needed. How can
that be?
Have you had any experience with this situation? Is there anything that can
be done?

Thanks
Ian wrote:
>Thanks lan for your continuing interest. I have this questions regarding
reorg:

(1) For DB2 (UDB inparticular), what is best practice in terms of (a)
Runstats, Reorgchk, Reorg, Runstats or (b) Reorgchk, Reorg, Runstats. What's
your take on either of the two reorg plan?

REORGCHK is not useful if you don't have valid statistics, so (b) would
be a better choice.
>(2) It seems that if I run Reorgchk for tables and Reorgchk for indexes, each
producing files for input to reorg, I might reorg tables and indexes twice
because as you said, offline reorg of tables include reorg of indexes too. Is
there a way to avoid this? I hope you see what I am getting at here.

If you're doing offline reorgs, you probably don't need to bother with
separate index reorgs.

Realize that there are certain application design characteristics that
will result in the requirement to reorg indexes. If your application
does not follow these patterns, chances are you won't need to do this
kind of index maintenance.
>(3) Could you discuss the pros and cons of Offline and Inplace reorg? Why
would you chose one over the other?

Offline means that the table is unavailable during reorg. Obviously,
this could present a problem for your users.
>Again, thanks for your contribution to my questions...

You might consider letting DB2 handle all of this for you. DB2 has
some pretty smart routines built in to the engine to manage doing
runstats / reorgs so you don't have to think about it.

http://is.gd/Ait [DB2 Info Center]
--
Message posted via DBMonster.com
http://www.dbmonster.com/Uwe/Forums....m-db2/200806/1

Jun 27 '08 #13
Ian
Okonita via DBMonster.com wrote:
(1) 2 Tables are identified as needing reorg both before and after runstats
was done on them. Reorg is then performed on the two tables and another
runstats done on these tables.
What puzzles me is that both tables still show that Reorg is needed. How can
that be?
Let's see the output from reorgchk for the tables that you're concerned
about.

Jun 27 '08 #14
Ok, this goes to the heart of Q1 and Q2: (Caveat: I have been running the
index reorgs since 12noon today and I am not done as of 4pm.)

Output from Reorgchk_tb_sta ts
REORG TABLE DB2ADMIN.ALERTS _PART;
REORG TABLE DB2ADMIN.CASE_C LOSURE_DETAILS;
REORG TABLE DB2ADMIN.CASE_P ART_STAT;
REORG TABLE DB2ADMIN.INVS_B CKGRND_SUMRY;
REORG TABLE DB2ADMIN.MPHONE _FRST;
REORG TABLE DB2ADMIN.MPHONE _LST;
REORG TABLE DB2ADMIN.NICKNA ME;
REORG TABLE DB2ADMIN.PROVID ER_CHAR;
REORG TABLE DB2ADMIN.SCRTY_ GRP_PRFL;
REORG TABLE DB2ADMIN.SCRTY_ PRFL_RSRC;

Observe that few tables are reported for reorg versus many more indexes as
shown below. For, example, for ACCESS_REPORT, there are two indexes that
reorgchk says should be reorge'd hence two REORG INDEXES for ACCESS_REPORT. I
want to REORG ALL for a table once...

Output from Reorgchk_ix_sta ts:

REORG INDEXES ALL FOR TABLE DB2ADMIN.ACCESS _REPORT ALLOW WRITE ACCESS;
REORG INDEXES ALL FOR TABLE DB2ADMIN.ACCESS _REPORT ALLOW WRITE ACCESS;
REORG INDEXES ALL FOR TABLE DB2ADMIN.ADDRES S ALLOW WRITE ACCESS;
REORG INDEXES ALL FOR TABLE DB2ADMIN.ADDRES S ALLOW WRITE ACCESS;
REORG INDEXES ALL FOR TABLE DB2ADMIN.ALERTS ALLOW WRITE ACCESS;
REORG INDEXES ALL FOR TABLE DB2ADMIN.APPROV AL ALLOW WRITE ACCESS;
REORG INDEXES ALL FOR TABLE DB2ADMIN.APPROV AL ALLOW WRITE ACCESS;
REORG INDEXES ALL FOR TABLE DB2ADMIN.ASSIGN MENT ALLOW WRITE ACCESS;
REORG INDEXES ALL FOR TABLE DB2ADMIN.ASSIGN MENT ALLOW WRITE ACCESS;
REORG INDEXES ALL FOR TABLE DB2ADMIN.ASSIGN MENT ALLOW WRITE ACCESS;
REORG INDEXES ALL FOR TABLE DB2ADMIN.CASE_C LOSURE ALLOW WRITE ACCESS;
REORG INDEXES ALL FOR TABLE DB2ADMIN.CASE_C LOSURE_DETAILS ALLOW WRITE ACCESS;
REORG INDEXES ALL FOR TABLE DB2ADMIN.CASE_M ASTER ALLOW WRITE ACCESS;
REORG INDEXES ALL FOR TABLE DB2ADMIN.CASE_O THR_CNTCT ALLOW WRITE ACCESS;
REORG INDEXES ALL FOR TABLE DB2ADMIN.CASE_P ART ALLOW WRITE ACCESS;
REORG INDEXES ALL FOR TABLE DB2ADMIN.CASE_P ART ALLOW WRITE ACCESS;
REORG INDEXES ALL FOR TABLE DB2ADMIN.CASE_P ART ALLOW WRITE ACCESS;
REORG INDEXES ALL FOR TABLE DB2ADMIN.CASE_P ART ALLOW WRITE ACCESS;
REORG INDEXES ALL FOR TABLE DB2ADMIN.CA_MAI N ALLOW WRITE ACCESS;
REORG INDEXES ALL FOR TABLE DB2ADMIN.COUNTY _PROVIDER_CROSS _REF ALLOW WRITE
ACCESS;
REORG INDEXES ALL FOR TABLE DB2ADMIN.DOC_NA RRATIVE ALLOW WRITE ACCESS;
REORG INDEXES ALL FOR TABLE DB2ADMIN.DOC_NA RRATIVE ALLOW WRITE ACCESS;
REORG INDEXES ALL FOR TABLE DB2ADMIN.EPISOD E ALLOW WRITE ACCESS;
REORG INDEXES ALL FOR TABLE DB2ADMIN.EPISOD E ALLOW WRITE ACCESS;
REORG INDEXES ALL FOR TABLE DB2ADMIN.EPISOD E ALLOW WRITE ACCESS;
REORG INDEXES ALL FOR TABLE DB2ADMIN.EPISOD E ALLOW WRITE ACCESS;
REORG INDEXES ALL FOR TABLE DB2ADMIN.EPISOD E ALLOW WRITE ACCESS;
REORG INDEXES ALL FOR TABLE DB2ADMIN.EPISOD E ALLOW WRITE ACCESS;
REORG INDEXES ALL FOR TABLE DB2ADMIN.EPISOD E ALLOW WRITE ACCESS;
REORG INDEXES ALL FOR TABLE DB2ADMIN.EPISOD E ALLOW WRITE ACCESS;
REORG INDEXES ALL FOR TABLE DB2ADMIN.EPISOD E ALLOW WRITE ACCESS;
REORG INDEXES ALL FOR TABLE DB2ADMIN.EPISOD E ALLOW WRITE ACCESS;
REORG INDEXES ALL FOR TABLE DB2ADMIN.EPISOD E ALLOW WRITE ACCESS;
REORG INDEXES ALL FOR TABLE DB2ADMIN.INTAKE _PART ALLOW WRITE ACCESS;
REORG INDEXES ALL FOR TABLE DB2ADMIN.INVEST IGATION ALLOW WRITE ACCESS;
REORG INDEXES ALL FOR TABLE DB2ADMIN.INVEST IGATION ALLOW WRITE ACCESS;
REORG INDEXES ALL FOR TABLE DB2ADMIN.INVEST IGATION_CNTC ALLOW WRITE ACCESS;
REORG INDEXES ALL FOR TABLE DB2ADMIN.INVEST IGATION_CNTC ALLOW WRITE ACCESS;
REORG INDEXES ALL FOR TABLE DB2ADMIN.INVEST IGATION_CNTC ALLOW WRITE ACCESS;
REORG INDEXES ALL FOR TABLE DB2ADMIN.MEDICA L_PROFILE ALLOW WRITE ACCESS;
REORG INDEXES ALL FOR TABLE DB2ADMIN.MEDICA TIONS ALLOW WRITE ACCESS;
REORG INDEXES ALL FOR TABLE DB2ADMIN.MENTAL _HEALTH_PROFILE ALLOW WRITE
ACCESS;
REORG INDEXES ALL FOR TABLE DB2ADMIN.MPHONE _FRST ALLOW WRITE ACCESS;
REORG INDEXES ALL FOR TABLE DB2ADMIN.MPHONE _FRST ALLOW WRITE ACCESS;
REORG INDEXES ALL FOR TABLE DB2ADMIN.MPHONE _LST ALLOW WRITE ACCESS;
REORG INDEXES ALL FOR TABLE DB2ADMIN.ONCALL _SCHEDULE ALLOW WRITE ACCESS;
REORG INDEXES ALL FOR TABLE DB2ADMIN.ORG_WO RKER_ROLE ALLOW WRITE ACCESS;
REORG INDEXES ALL FOR TABLE DB2ADMIN.PAN_TE XT_EVENT ALLOW WRITE ACCESS;
REORG INDEXES ALL FOR TABLE DB2ADMIN.PAN_TE XT_EVENT ALLOW WRITE ACCESS;
REORG INDEXES ALL FOR TABLE DB2ADMIN.PERSON _AKA ALLOW WRITE ACCESS;
REORG INDEXES ALL FOR TABLE DB2ADMIN.PROVID ER_ORG ALLOW WRITE ACCESS;
REORG INDEXES ALL FOR TABLE DB2ADMIN.PROVID ER_ORG ALLOW WRITE ACCESS;
REORG INDEXES ALL FOR TABLE DB2ADMIN.PROVID ER_ORG ALLOW WRITE ACCESS;
REORG INDEXES ALL FOR TABLE DB2ADMIN.PROVID ER_PART ALLOW WRITE ACCESS;
REORG INDEXES ALL FOR TABLE DB2ADMIN.PROVID ER_PART_STAT ALLOW WRITE ACCESS;
REORG INDEXES ALL FOR TABLE DB2ADMIN.RELATI ONSHIP ALLOW WRITE ACCESS;
REORG INDEXES ALL FOR TABLE DB2ADMIN.RELATI ONSHIP ALLOW WRITE ACCESS;
REORG INDEXES ALL FOR TABLE DB2ADMIN.TICKLE R ALLOW WRITE ACCESS;
REORG INDEXES ALL FOR TABLE DB2ADMIN.TICKLE R ALLOW WRITE ACCESS;

The index reorgs is taking way too long because VERY LARGE tables are being
reorg'd many times and I need to find another way of doing indexes or
eliminating multiple reorgs of the same table because of multiple indexes
being reported for the same table. Am I making sense?

Some of the tables are in the millions of rows in the index section. What can
I do for relief? I am researching hard for options and the documentation that
I have reviewed don't say nothing about this. In fact, I have learned more
from this runnig thread than from the books - they tell you the code but no
reasoning behind it or why it done so...anyway, that is where I am stuck.

I appreciate some more help to resolve this...

Thanks

Ian wrote:
>(1) 2 Tables are identified as needing reorg both before and after runstats
was done on them. Reorg is then performed on the two tables and another
runstats done on these tables.
What puzzles me is that both tables still show that Reorg is needed. How can
that be?

Let's see the output from reorgchk for the tables that you're concerned
about.
--
Message posted via http://www.dbmonster.com

Jun 27 '08 #15
Ian
Okonita via DBMonster.com wrote:
Ok, this goes to the heart of Q1 and Q2: (Caveat: I have been running the
index reorgs since 12noon today and I am not done as of 4pm.)

Output from Reorgchk_tb_sta ts
REORG TABLE DB2ADMIN.ALERTS _PART;
REORG TABLE DB2ADMIN.CASE_C LOSURE_DETAILS;
REORG TABLE DB2ADMIN.CASE_P ART_STAT;
REORG TABLE DB2ADMIN.INVS_B CKGRND_SUMRY;
REORG TABLE DB2ADMIN.MPHONE _FRST;
REORG TABLE DB2ADMIN.MPHONE _LST;
REORG TABLE DB2ADMIN.NICKNA ME;
REORG TABLE DB2ADMIN.PROVID ER_CHAR;
REORG TABLE DB2ADMIN.SCRTY_ GRP_PRFL;
REORG TABLE DB2ADMIN.SCRTY_ PRFL_RSRC;

Observe that few tables are reported for reorg versus many more indexes as
shown below. For, example, for ACCESS_REPORT, there are two indexes that
reorgchk says should be reorge'd hence two REORG INDEXES for ACCESS_REPORT. I
want to REORG ALL for a table once...

Output from Reorgchk_ix_sta ts:
REORGCHK_IX_STA TS has one row per index, and tells you the index schema
(INDSCHEMA) and index name (INDNAME). So, logically, you would
generate:

REORG INDEX DB2ADMIN.ACCESS _RPT_IX1;
REORG INDEX DB2ADMIN.ACCESS _RPT_IX2;
As I said earlier: Chances are good that if you have a table with more
than 1 index, you're never going to get a "perfect" reorgchk for the
indexes on the table -- at a minimum, the cluster ratio will probably be
great on one indexes, and crap on the rest. Trying to automatically
pick indexes to reorg is a challenge, so using this kind of logic
usually (looking for a '*' in the output of REORGCHK_IX_STA TS) doesn't
work too well.


Ian

Jun 27 '08 #16
Yes, it is going to be a challenge and I can thing of a solution albeit not
elegant.
Say do a quick load of the output of reorgchk to a table keyed on table_name,
turn around dump table back to a flat file and run reorg from that...for all
of the time I will spend monkeying around with this, you'll think my boss
will spring for a cheap tool...thank God I'm not doing this on a Prod
environment.

lan, here's to many thanks for the time and patience...I appreciate it very
much

Ian wrote:
>Ok, this goes to the heart of Q1 and Q2: (Caveat: I have been running the
index reorgs since 12noon today and I am not done as of 4pm.)
[quoted text clipped - 17 lines]
>>
Output from Reorgchk_ix_sta ts:

REORGCHK_IX_ST ATS has one row per index, and tells you the index schema
(INDSCHEMA) and index name (INDNAME). So, logically, you would
generate:

REORG INDEX DB2ADMIN.ACCESS _RPT_IX1;
REORG INDEX DB2ADMIN.ACCESS _RPT_IX2;

As I said earlier: Chances are good that if you have a table with more
than 1 index, you're never going to get a "perfect" reorgchk for the
indexes on the table -- at a minimum, the cluster ratio will probably be
great on one indexes, and crap on the rest. Trying to automatically
pick indexes to reorg is a challenge, so using this kind of logic
usually (looking for a '*' in the output of REORGCHK_IX_STA TS) doesn't
work too well.

Ian
--
Message posted via DBMonster.com
http://www.dbmonster.com/Uwe/Forums....m-db2/200806/1

Jun 27 '08 #17

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

3
3867
by: D | last post by:
Database 1 is corrupted. Database 2 was created by dba but none of the primary or foreign key constraints were ported over. TOAD won't let me export. I will try ErWin next. What is the best way to recover this information if the views are corrupted and through errors? thanks, Lowly developer
13
4446
by: Greg Strong | last post by:
Hello All, Hello All, What are the ToDo's / Gotchas to convert an MDB Access 2K2 database to an Access Project (i.e. ADP) file for the front end using Microsoft SQL Server 2000 Desktop Engine (MSDE 2000) for the back end? Now for the background. I have a prototype MDB file that was built in Access 2K2, and compiled in Access 2K to provide backward
0
2262
by: ward | last post by:
Greetings. Ok, I admit it, I bit off a bit more than I can chew. I need to complete this "Generate Report" page for my employer and I'm a little over my head. I could use some additional assistance. I say additional because I've already had help which is greatly appreciated. I do try to take the time and understand the provided script in hopes on not having to trouble others on those. But here it goes...
4
3759
by: benwylie | last post by:
I am running IIS 6.0 on Windows 2003. I would like to be able to run a perl script from a web page and include the output. I have tried doing it with an ssi: <form action='docsearch.shtml' method='get'> <!--#exec cgi="/cgi-bin/docsearch.pl--> </form> This correctly ran the script, but it was unable to include the
1
4779
by: Osoccer | last post by:
...to a different folder and in the relocated file concatenates all of the lines in one long string with a space between each line element. Here is a fuller statement of the problem: I need a Visual Basic Script file, call it "Move and Reformat Text File.VBS," that will run from a Windows Script Host command-prompt-based version as follows: C:\> Cscript.exe "Move and Reformat Text File.VBS" The objective of the VBScript file, "Move...
12
3017
by: adamurbas | last post by:
ya so im pretty much a newb to this whole python thing... its pretty cool but i just started today and im already having trouble. i started to use a tutorial that i found somewhere and i followed the instructions and couldnt get the correct results. heres the code stuff... temperature=input("what is the temperature of the spam?") if temperature>50: print "the salad is properly cooked." else:
5
3289
by: camphor | last post by:
hi, I have found an upload script in hotscripts and have implemented it into the website, I followed the installation steps to 'give write permissions to php on the upload folder (which is _uploadedfiles_xxxx) (php must be allowed to move uploaded files to this folder' - uploadedfiles_xxxx. I typed <?php chmod ('_uploadedfiles_xxxx',640); ?> into notepad and saved it as php in the uploaded_xxxx folder, when I went to test it, the error...
3
5194
by: aRTx | last post by:
I have try a couple of time but does not work for me My files everytime are sortet by NAME. I want to Sort my files by Date-desc. Can anyone help me to do it? The Script <? /* ORIGJINALI
0
9643
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
9480
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
10147
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
1
10081
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
9946
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
8968
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
0
5378
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
1
4044
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
3
2875
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.