Index: /branches/rel_apv_10_7_4/usr/click/bin/backend/sys_tool.c
===================================================================
--- /branches/rel_apv_10_7_4/usr/click/bin/backend/sys_tool.c	(revision 39850)
+++ /branches/rel_apv_10_7_4/usr/click/bin/backend/sys_tool.c	(working copy)
@@ -6686,13 +6686,25 @@
 		printf("Failed to get running configuration\n");
 		return -1;
 	}
-	if (!grepitem || !*grepitem) {
-		/* Display the temp config file content. */
-		sprintf(buff, "cat %s | grep -v \"Last configuration change\"", fname);
-	} else {
-		/* grep "grepitem" from the temp config file. */
-		sprintf(buff, "grep -e '%s' %s", grepitem, fname);
-	}
+        if (!grepitem || !*grepitem) {
+        /* Display the temp config file content. */
+        // TWSD-1238
+            sprintf(buff,
+                    "cat %s | "
+                    "grep -v \"Last configuration change\" | "
+                    "egrep -v \"^[[:space:]]*(drop|route)[[:space:]]+[0-9]+[[:space:]]+syns\\b\"",
+                    fname
+            );
+        } else {
+        /* grep "grepitem" from the temp config file. */
+        // TWSD-1238
+            sprintf(buff,
+                    "grep -e '%s' %s | "
+                    "egrep -v \"^[[:space:]]*(drop|route)[[:space:]]+[0-9]+[[:space:]]+syns\\b\"",
+                    grepitem,
+                    fname
+            );
+        }
 
 
 	std_close_on_exec_off();
